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