summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.gitlab-ci.yml38
1 files changed, 0 insertions, 38 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100755
index e65a22c..0000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-stages:
- - debug
- - release
-
-rust-latest:
- stage: debug
- image: rust:latest
- script:
- - cargo build --verbose
- - cargo test --verbose
-
-rust-nightly:
- stage: debug
- image: rustlang/rust:nightly
- script:
- - cargo build --verbose
- - cargo test --verbose
- allow_failure: true
-
-release-arm-linux:
- stage: release
- image: rust:latest
- script:
- - cargo build --verbose --release --target aarch64-unknown-linux-gnu
- artifacts:
- paths:
- - target/aarch64-unknown-linux-gnu/release/where
- - target/aarch64-unknown-linux-gnu/release/whered
-
-#release-x86-linux:
-# stage: release
-# image: rust:latest
-# script:
-# - cargo build --verbose --release --target x86_64-unknown-linux-gnu
-# artifacts:
-# paths:
-# - target/x86_64-unknown-linux-gnu/release/where
-# - target/x86_64-unknown-linux-gnu/release/whered