File: .gitlab-ci.yml

package info (click to toggle)
rust-pci-driver 0.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 360 kB
  • sloc: sh: 37; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 394 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
rust-stable:
  parallel:
    matrix:
      - IMAGE:
          - amd64/rust
          - i386/rust
        PCI_DRIVER_FEATURES:
          - ""
          - vfio
  image: $IMAGE:latest
  before_script:
    - rustup component add clippy rustfmt
  script:
    - PCI_DRIVER_FEATURES+=,_unsafe-op-in-unsafe-fn ./test.sh

rust-1.47:
  extends: rust-stable
  image: $IMAGE:1.47
  script:
    - ./test.sh