summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 55ff11a4370a0ba4fa9c0dbbbb6c21b4b61e3462 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
stages:
    - build

rust-latest:
    stage: build
    image: rust:latest
    script:
        - cargo build --verbose
        - cargo test --verbose
    tags:
        - share

rust-nightly:
    stage: build
    image: rustlang/rust:nightly
    script:
        - cargo build --verbose
        - cargo test --verbose
    allow_failure: true
    tags:
        - share