File: .woodpecker.yml

package info (click to toggle)
rust-systemstat 0.2.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 368 kB
  • sloc: makefile: 4
file content (20 lines) | stat: -rw-r--r-- 998 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
pipeline:
  test:
    image: rust:alpine
    pull: true
    commands:
    - apk add musl-dev
    - RUST_BACKTRACE=1 cargo run --example info
    - RUST_BACKTRACE=1 cargo test -- --nocapture
    - RUST_BACKTRACE=1 cargo test -F serde -- --nocapture
    - rustup target add aarch64-apple-darwin aarch64-pc-windows-msvc aarch64-unknown-linux-gnu i686-pc-windows-gnu i686-unknown-freebsd i686-unknown-linux-gnu x86_64-pc-windows-gnu x86_64-unknown-freebsd x86_64-unknown-linux-musl x86_64-unknown-netbsd
    - cargo check --target aarch64-apple-darwin
    - cargo check --target aarch64-pc-windows-msvc
    - cargo check --target aarch64-unknown-linux-gnu
    - cargo check --target i686-pc-windows-gnu
    - cargo check --target i686-unknown-freebsd
    - cargo check --target i686-unknown-linux-gnu
    - cargo check --target x86_64-pc-windows-gnu
    - cargo check --target x86_64-unknown-freebsd
    - cargo check --target x86_64-unknown-linux-musl
    - cargo check --target x86_64-unknown-netbsd