File: .gitlab-ci.yml

package info (click to toggle)
rust-ripcalc 0.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 256 kB
  • sloc: makefile: 69
file content (12 lines) | stat: -rw-r--r-- 333 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
image: "rust:latest"

before_script:
    - apt-get update -yqq
    - apt-get install -yqq --no-install-recommends build-essential pandoc

# Use cargo to test the project
test:cargo:
  script: |
    rustc --version && cargo --version # Print version info for debugging
    cargo test --workspace --verbose
    make all # run bintests