-
Notifications
You must be signed in to change notification settings - Fork 10
41 lines (35 loc) · 963 Bytes
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Cargo Comprehensive
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- name: Install Rust `std` source
run: rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
- name: Build
run: cargo build
- name: Run tests
run: cargo test -Zbuild-std --target x86_64-unknown-linux-gnu --release
env:
RUSTFLAGS: "-Zsanitizer=thread"
build-docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- name: Build and test for Docker
run: docker build -f docker/Dockerfile --target test .