Prepare for merge: Move all minidom-rs files into minidom-rs/
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
1ee6609c97
commit
57b2c6a135
14 changed files with 0 additions and 0 deletions
62
minidom-rs/.gitlab-ci.yml
Normal file
62
minidom-rs/.gitlab-ci.yml
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
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"
|
||||
Loading…
Reference in a new issue