mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 06:14:39 -05:00
19 lines
370 B
YAML
19 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
|