mirror of
https://github.com/timvisee/ffsend.git
synced 2025-10-03 17:49:15 +02:00
Fix GitLab CI configuration for latest DAG change
This commit is contained in:
parent
777ce46fb1
commit
e369b581ec
1 changed files with 8 additions and 4 deletions
|
@ -74,7 +74,8 @@ check-old:
|
||||||
# Build using Rust stable
|
# Build using Rust stable
|
||||||
build-x86_64-linux-gnu:
|
build-x86_64-linux-gnu:
|
||||||
stage: build
|
stage: build
|
||||||
needs: check-stable
|
needs:
|
||||||
|
- check-stable
|
||||||
script:
|
script:
|
||||||
- cargo build --target=$RUST_TARGET --release --verbose
|
- cargo build --target=$RUST_TARGET --release --verbose
|
||||||
- mv target/$RUST_TARGET/release/ffsend ./ffsend-$RUST_TARGET
|
- mv target/$RUST_TARGET/release/ffsend ./ffsend-$RUST_TARGET
|
||||||
|
@ -88,7 +89,8 @@ build-x86_64-linux-gnu:
|
||||||
# Build a static version
|
# Build a static version
|
||||||
build-x86_64-linux-musl:
|
build-x86_64-linux-musl:
|
||||||
stage: build
|
stage: build
|
||||||
needs: check-stable
|
needs:
|
||||||
|
- check-stable
|
||||||
variables:
|
variables:
|
||||||
RUST_TARGET: x86_64-unknown-linux-musl
|
RUST_TARGET: x86_64-unknown-linux-musl
|
||||||
script:
|
script:
|
||||||
|
@ -124,7 +126,8 @@ build-x86_64-linux-musl:
|
||||||
# Run the unit tests through Cargo
|
# Run the unit tests through Cargo
|
||||||
test-cargo:
|
test-cargo:
|
||||||
stage: test
|
stage: test
|
||||||
needs: check-stable
|
needs:
|
||||||
|
- check-stable
|
||||||
dependencies: []
|
dependencies: []
|
||||||
script:
|
script:
|
||||||
- cargo test --verbose
|
- cargo test --verbose
|
||||||
|
@ -259,7 +262,8 @@ release-docker:
|
||||||
package-aur:
|
package-aur:
|
||||||
image: archlinux/base
|
image: archlinux/base
|
||||||
stage: package
|
stage: package
|
||||||
needs: release-github
|
needs:
|
||||||
|
- release-github
|
||||||
dependencies: []
|
dependencies: []
|
||||||
only:
|
only:
|
||||||
- /^v(\d+\.)*\d+$/
|
- /^v(\d+\.)*\d+$/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue