mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 06:48:33 +01:00
18 lines
370 B
YAML
18 lines
370 B
YAML
stages:
|
|
- build
|
|
|
|
# Rocket does not currently compile on stable Rust.
|
|
# Once it does, we can uncomment this, and instead
|
|
# put `allow-failure: true` on the nightly build.
|
|
#
|
|
# rust-latest:
|
|
# stage: build
|
|
# image: rust:latest
|
|
# script:
|
|
# - cargo build --verbose
|
|
|
|
rust-nightly:
|
|
stage: build
|
|
image: rustlang/rust:nightly
|
|
script:
|
|
- cargo build --verbose
|