From b96ad9ecbd805b215a0d4ce000623e3f7aa14454 Mon Sep 17 00:00:00 2001 From: Paul van Tilburg Date: Thu, 16 Jul 2020 18:48:01 +0200 Subject: [PATCH] Fix the target for the stoptime-ui build in GitLab CI --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 390340b..965d20b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,5 +26,5 @@ run-build: script: - rustc --version && cargo --version - cargo build -p stoptime-server --release --jobs 1 - - cargo build -p stoptime-ui --release --jobs 1 + - cargo build -p stoptime-ui --target wasm32-unknown-unknown --release --jobs 1 - cargo test -p stoptime-server --all-features -- --test-threads 1