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

rust-latest:
  stage: build
  image: rust:latest
  script:
    - cargo build --verbose
    - cargo test --verbose
    - touch a.f90 b.f90 c.f90
    - cargo run -- build

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