10 lines
207 B
YAML
10 lines
207 B
YAML
image: ubuntu
|
|
|
|
before_script:
|
|
- apt-get update -qq && apt-get install -y -qq curl
|
|
- curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly -y
|
|
|
|
build:
|
|
script:
|
|
- cargo build --release
|