From e369b581ec1d1033a65bc083fc1246b7006d48f7 Mon Sep 17 00:00:00 2001 From: timvisee Date: Fri, 23 Aug 2019 17:33:14 +0200 Subject: [PATCH] Fix GitLab CI configuration for latest DAG change --- .gitlab-ci.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e897d0a..c833ebe 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -74,7 +74,8 @@ check-old: # Build using Rust stable build-x86_64-linux-gnu: stage: build - needs: check-stable + needs: + - check-stable script: - cargo build --target=$RUST_TARGET --release --verbose - mv target/$RUST_TARGET/release/ffsend ./ffsend-$RUST_TARGET @@ -88,7 +89,8 @@ build-x86_64-linux-gnu: # Build a static version build-x86_64-linux-musl: stage: build - needs: check-stable + needs: + - check-stable variables: RUST_TARGET: x86_64-unknown-linux-musl script: @@ -124,7 +126,8 @@ build-x86_64-linux-musl: # Run the unit tests through Cargo test-cargo: stage: test - needs: check-stable + needs: + - check-stable dependencies: [] script: - cargo test --verbose @@ -259,7 +262,8 @@ release-docker: package-aur: image: archlinux/base stage: package - needs: release-github + needs: + - release-github dependencies: [] only: - /^v(\d+\.)*\d+$/