debian-mirror-gitlab/lib/gitlab/ci/templates/Rust.gitlab-ci.yml

24 lines
862 B
YAML
Raw Normal View History

2018-03-17 18:26:18 +05:30
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/rust/tags/
image: "rust:latest"
2016-08-24 12:49:21 +05:30
# Optional: Pick zero or more services to be used on all builds.
# Only needed when using a docker container to run your tests in.
2017-09-10 17:25:29 +05:30
# Check out: http://docs.gitlab.com/ce/ci/docker/using_docker_images.html#what-is-a-service
2019-09-04 21:01:54 +05:30
# services:
# - mysql:latest
# - redis:latest
# - postgres:latest
2016-08-24 12:49:21 +05:30
# Optional: Install a C compiler, cmake and git into the container.
# You will often need this when you (or any of your dependencies) depends on C code.
2019-09-04 21:01:54 +05:30
# before_script:
# - apt-get update -yqq
# - apt-get install -yqq --no-install-recommends build-essential
2016-08-24 12:49:21 +05:30
# Use cargo to test the project
test:cargo:
script:
2019-09-04 21:01:54 +05:30
- rustc --version && cargo --version # Print version info for debugging
- cargo test --all --verbose