Remove unused .gitlab-ci.yml files
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
ae764477c7
commit
e1b53eae3c
4 changed files with 0 additions and 190 deletions
|
@ -1,62 +0,0 @@
|
||||||
stages:
|
|
||||||
- build
|
|
||||||
- test
|
|
||||||
|
|
||||||
variables:
|
|
||||||
FEATURES: ""
|
|
||||||
RUST_BACKTRACE: "full"
|
|
||||||
|
|
||||||
.stable:
|
|
||||||
image: rust:latest
|
|
||||||
cache:
|
|
||||||
key: stable
|
|
||||||
paths:
|
|
||||||
- target/
|
|
||||||
|
|
||||||
.nightly:
|
|
||||||
image: rustlang/rust:nightly
|
|
||||||
cache:
|
|
||||||
key: nightly
|
|
||||||
paths:
|
|
||||||
- target/
|
|
||||||
|
|
||||||
.build:
|
|
||||||
stage: build
|
|
||||||
script:
|
|
||||||
- cargo build --verbose --no-default-features --features=$FEATURES
|
|
||||||
|
|
||||||
.test:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- cargo test --lib --verbose --no-default-features --features=$FEATURES
|
|
||||||
|
|
||||||
rust-latest-build:
|
|
||||||
extends:
|
|
||||||
- .build
|
|
||||||
- .stable
|
|
||||||
|
|
||||||
rust-nightly-build:
|
|
||||||
extends:
|
|
||||||
- .build
|
|
||||||
- .nightly
|
|
||||||
|
|
||||||
|
|
||||||
rust-latest-test:
|
|
||||||
extends:
|
|
||||||
- .test
|
|
||||||
- .stable
|
|
||||||
|
|
||||||
rust-nightly-test:
|
|
||||||
extends:
|
|
||||||
- .test
|
|
||||||
- .nightly
|
|
||||||
|
|
||||||
rust-latest-build with features=minidom:
|
|
||||||
extends: rust-latest-build
|
|
||||||
variables:
|
|
||||||
FEATURES: "minidom"
|
|
||||||
|
|
||||||
rust-latest-test with features=minidom:
|
|
||||||
extends: rust-latest-test
|
|
||||||
variables:
|
|
||||||
FEATURES: "minidom"
|
|
|
@ -1,62 +0,0 @@
|
||||||
stages:
|
|
||||||
- build
|
|
||||||
- test
|
|
||||||
|
|
||||||
variables:
|
|
||||||
FEATURES: ""
|
|
||||||
RUST_BACKTRACE: "full"
|
|
||||||
|
|
||||||
.stable:
|
|
||||||
image: rust:latest
|
|
||||||
cache:
|
|
||||||
key: stable
|
|
||||||
paths:
|
|
||||||
- target/
|
|
||||||
|
|
||||||
.nightly:
|
|
||||||
image: rustlang/rust:nightly
|
|
||||||
cache:
|
|
||||||
key: nightly
|
|
||||||
paths:
|
|
||||||
- target/
|
|
||||||
|
|
||||||
.build:
|
|
||||||
stage: build
|
|
||||||
script:
|
|
||||||
- cargo build --verbose --no-default-features --features=$FEATURES
|
|
||||||
|
|
||||||
.test:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- cargo test --verbose --no-default-features --features=$FEATURES
|
|
||||||
|
|
||||||
rust-latest-build:
|
|
||||||
extends:
|
|
||||||
- .build
|
|
||||||
- .stable
|
|
||||||
|
|
||||||
rust-nightly-build:
|
|
||||||
extends:
|
|
||||||
- .build
|
|
||||||
- .nightly
|
|
||||||
|
|
||||||
|
|
||||||
rust-latest-test:
|
|
||||||
extends:
|
|
||||||
- .test
|
|
||||||
- .stable
|
|
||||||
|
|
||||||
rust-nightly-test:
|
|
||||||
extends:
|
|
||||||
- .test
|
|
||||||
- .nightly
|
|
||||||
|
|
||||||
rust-latest-build with features=comments:
|
|
||||||
extends: rust-latest-build
|
|
||||||
variables:
|
|
||||||
FEATURES: "comments"
|
|
||||||
|
|
||||||
rust-latest-test with features=comments:
|
|
||||||
extends: rust-latest-test
|
|
||||||
variables:
|
|
||||||
FEATURES: "comments"
|
|
|
@ -1,14 +0,0 @@
|
||||||
stages:
|
|
||||||
- build
|
|
||||||
rust-latest:
|
|
||||||
stage: build
|
|
||||||
image: rust:latest
|
|
||||||
script:
|
|
||||||
- cargo build --verbose
|
|
||||||
- cargo test --verbose
|
|
||||||
rust-nightly:
|
|
||||||
stage: build
|
|
||||||
image: rustlang/rust:nightly
|
|
||||||
script:
|
|
||||||
- cargo build --verbose
|
|
||||||
- cargo test --verbose
|
|
|
@ -1,52 +0,0 @@
|
||||||
stages:
|
|
||||||
- build
|
|
||||||
- test
|
|
||||||
|
|
||||||
variables:
|
|
||||||
FEATURES: ""
|
|
||||||
RUST_BACKTRACE: "full"
|
|
||||||
|
|
||||||
.stable:
|
|
||||||
image: rust:latest
|
|
||||||
cache:
|
|
||||||
key: stable
|
|
||||||
paths:
|
|
||||||
- target/
|
|
||||||
|
|
||||||
.nightly:
|
|
||||||
image: rustlang/rust:nightly
|
|
||||||
cache:
|
|
||||||
key: nightly
|
|
||||||
paths:
|
|
||||||
- target/
|
|
||||||
|
|
||||||
.build:
|
|
||||||
stage: build
|
|
||||||
script:
|
|
||||||
- cargo build --verbose --no-default-features --features=$FEATURES
|
|
||||||
|
|
||||||
.test:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- cargo test --verbose --no-default-features --features=$FEATURES
|
|
||||||
|
|
||||||
rust-latest-build:
|
|
||||||
extends:
|
|
||||||
- .build
|
|
||||||
- .stable
|
|
||||||
|
|
||||||
rust-nightly-build:
|
|
||||||
extends:
|
|
||||||
- .build
|
|
||||||
- .nightly
|
|
||||||
|
|
||||||
|
|
||||||
rust-latest-test:
|
|
||||||
extends:
|
|
||||||
- .test
|
|
||||||
- .stable
|
|
||||||
|
|
||||||
rust-nightly-test:
|
|
||||||
extends:
|
|
||||||
- .test
|
|
||||||
- .nightly
|
|
Loading…
Reference in a new issue