summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaindropsSys <raindrops@equestria.dev>2024-06-19 10:54:31 +0200
committerRaindropsSys <raindrops@equestria.dev>2024-06-19 10:54:31 +0200
commit9302dd7d3835ac5d645b6241dc44499249c37cd7 (patch)
treea3b6e8923a5eb47c50e2b6a326416391c2d8df2f
parent5dc35a3254661bfa15caf48d923703e86867f08b (diff)
downloadwhere-rs-9302dd7d3835ac5d645b6241dc44499249c37cd7.tar.gz
where-rs-9302dd7d3835ac5d645b6241dc44499249c37cd7.tar.bz2
where-rs-9302dd7d3835ac5d645b6241dc44499249c37cd7.zip
Remove GitLab CI
-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