You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
515 B
YAML
18 lines
515 B
YAML
6 years ago
|
# Official language image. Look for the different tagged releases at:
|
||
|
# https://hub.docker.com/r/library/rust/tags/
|
||
|
image: "rust:latest"
|
||
|
|
||
|
# Install a C compiler, cmake and git into the container.
|
||
|
before_script:
|
||
|
- apt-get update -yqq
|
||
|
- apt-get install -yqq --no-install-recommends build-essential
|
||
|
|
||
|
# Use cargo to test the project
|
||
|
build:cargo:
|
||
|
script:
|
||
|
- rustc --version && cargo --version # Print version info for debugging
|
||
|
- cargo build --release
|
||
|
artifacts:
|
||
|
paths:
|
||
|
- "target/release/peshming"
|