mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
CI: Show rustc and cargo version
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
f0b302da1f
commit
63733885d2
1 changed files with 9 additions and 0 deletions
|
@ -6,12 +6,21 @@ variables:
|
||||||
FEATURES: ""
|
FEATURES: ""
|
||||||
RUST_BACKTRACE: "full"
|
RUST_BACKTRACE: "full"
|
||||||
|
|
||||||
|
.show-version:
|
||||||
|
before_script:
|
||||||
|
- rustc --version
|
||||||
|
- cargo --version
|
||||||
|
|
||||||
.stable:
|
.stable:
|
||||||
image: rust:latest
|
image: rust:latest
|
||||||
|
extends:
|
||||||
|
- .show-version
|
||||||
|
|
||||||
.nightly:
|
.nightly:
|
||||||
image: rustlang/rust:nightly
|
image: rustlang/rust:nightly
|
||||||
allow_failure: true # It's not often, but it happens nightly breaks, surprisingly.
|
allow_failure: true # It's not often, but it happens nightly breaks, surprisingly.
|
||||||
|
extends:
|
||||||
|
- .show-version
|
||||||
|
|
||||||
.test:
|
.test:
|
||||||
stage: test
|
stage: test
|
||||||
|
|
Loading…
Reference in a new issue