From ab981f68d0e6108e4c539694af206c832c90f854 Mon Sep 17 00:00:00 2001 From: shockrah Date: Fri, 31 Jul 2020 00:15:04 -0700 Subject: [PATCH] updated syntax --- .gitlab-ci.yml | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 713819f..e2f6a62 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,15 +1,19 @@ image: sseemayer/rust-musl-builder-mingw -build-test: - stage: build - only: - - testing - script: - - cd server/ - - cargo build --release +basic-build: + stage: build + only: + - testing + script: + - cd server/ + - cargo build --release -curl: - stage: testing - - cargo run --release - - fc_id=$! - - bash ./tests/main.sh body + +basic-test: + stage: test + only: + - testing + script: + - cargo run --release + - fc_id=$! + - bash ./tests/main.sh body