-
Notifications
You must be signed in to change notification settings - Fork 16
150 lines (120 loc) · 4.05 KB
/
Copy pathx86-cpu.yml
File metadata and controls
150 lines (120 loc) · 4.05 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
name: x86-cpu
on:
push:
pull_request:
schedule:
- cron: "0 18 * * *"
env:
CARGO_TERM_COLOR: always
jobs:
check:
strategy:
matrix:
include:
- rustc: stable
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
persist-credentials: false
- uses: actions/checkout@v4
with:
repository: ctz/intel-sde
path: thirdparty/intel-sde
persist-credentials: false
- name: Set up Intel SDE
run: |
echo "PATH=$(pwd)/thirdparty/intel-sde:$PATH" >> $GITHUB_ENV
- name: Install ${{ matrix.rustc }} toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rustc }}
- name: Install valgrind
run: sudo apt-get update && sudo apt-get install -y valgrind
- name: Build (release)
run: cargo build --release --tests
- name: Check Skylake
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -skl --"
- name: Check Cannon Lake
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -cnl --"
- name: Check Ice Lake
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -icl --"
- name: Check Skylake server
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -skx --"
- name: Check Cascade Lake
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -clx --"
- name: Check Cooper Lake
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -cpx --"
- name: Check Ice Lake server
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -icx --"
- name: Check Tiger Lake
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -tgl --"
- name: Check Alder Lake
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -adl --"
- name: Check Meteor Lake
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -mtl --"
- name: Check Raptor Lake
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -rpl --"
- name: Check Sapphire Rapids
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -spr --"
- name: Check Emerald Rapids
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -emr --"
- name: Check Granite Rapids
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -gnr --"
- name: Check Granite Rapids (AVX10.1 / 256VL)
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -gnr256 --"
- name: Check Diamond Rapids
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -dmr --"
- name: Check Sierra Forest
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -srf --"
- name: Check Arrow Lake
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -arl --"
- name: Check Lunar Lake
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -lnl --"
- name: Check Panther Lake
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -ptl --"
- name: Check Clearwater Forest
run: cargo test --release
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "sde -cwf --"