aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOndřej Čertík <ondrej@certik.us>2020-01-13 23:05:23 -0700
committerGitHub <noreply@github.com>2020-01-13 23:05:23 -0700
commit18ba49aabe705bea9a057d6ad8207473d0054e2c (patch)
treeb3f7c9feab257ced9089afd4f73169351102d18f
parent085a843335db2990b1837354c09a86e1496b486d (diff)
parent17062f28decf1710595873992135da96d7ab2edc (diff)
downloadfpm-18ba49aabe705bea9a057d6ad8207473d0054e2c.tar.gz
fpm-18ba49aabe705bea9a057d6ad8207473d0054e2c.zip
Merge pull request #3 from certik/gitlab-ci
Remove GitLab-CI
-rw-r--r--.gitlab-ci.yml21
1 files changed, 0 insertions, 21 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index 845df00..0000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-stages:
- - build
-
-rust-latest:
- stage: build
- image: rust:latest
- script:
- - apt-get update
- - apt-get -yq --no-install-recommends install cmake make gfortran
- - cargo build --verbose
- - cargo test --verbose
- - cargo run -- --help
- - ./run_tests.sh
-
-rust-nightly:
- stage: build
- image: rustlang/rust:nightly
- script:
- - cargo build --verbose
- - cargo test --verbose
- allow_failure: true