Prepare for merge: Move all xmpp-rs files into xmpp-rs/
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
76619178a2
commit
2fec9083a4
9 changed files with 0 additions and 0 deletions
|
|
@ -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