-
Notifications
You must be signed in to change notification settings - Fork 2
84 lines (67 loc) · 1.77 KB
/
ci.yaml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: CI
on:
schedule:
- cron: "0 0 1 *"
push:
branches: master
pull_request:
jobs:
ci:
name: CI
runs-on: ubuntu-latest
needs: [build, test, test-native]
steps:
- name: Done
run: exit 0
build:
name: Build
strategy:
matrix:
include:
- { target: x86_64-unknown-linux-gnu, os: ubuntu-latest }
- { target: x86_64-apple-darwin, os: macos-latest }
- { target: aarch64-apple-darwin, os: macos-latest }
- { target: x86_64-pc-windows-msvc, os: windows-latest }
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
targets: ${{ matrix.target }}
- run: cargo build --target ${{ matrix.target }} --release
env:
RUSTFLAGS: -D warnings
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
- name: Print enabled target features
run: rustc --print=cfg -C target-cpu=native
- run: cargo test
env:
RUST_BACKTRACE: 1
test-native:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
- name: Print enabled target features
run: rustc --print=cfg -C target-cpu=native
- run: cargo test
env:
RUST_BACKTRACE: 1
RUSTFLAGS: -C target-cpu=native