File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change
1
+ kind : pipeline
2
+ name : test-on-avx2
3
+
4
+ platform :
5
+ arch : amd64
6
+
7
+ steps :
8
+ - name : test
9
+ image : rust:1
10
+ environment :
11
+ RUSTFLAGS : ' -C target-cpu=native'
12
+ commands :
13
+ - cargo build --verbose --all
14
+ - cargo test --verbose --all
15
+
16
+ ---
17
+
18
+ kind : pipeline
19
+ name : test-on-sse42
20
+
21
+ platform :
22
+ arch : amd64
23
+
24
+ steps :
25
+ - name : test
26
+ image : rust:1
27
+ environment :
28
+ RUSTFLAGS : ' -C target-cpu=native -C target-feature=-avx2'
29
+ commands :
30
+ - cargo build --verbose --all
31
+ - cargo test --verbose --all
32
+
33
+ ---
34
+
35
+ kind : pipeline
36
+ name : test-on-arm64
37
+
38
+ platform :
39
+ arch : arm64
40
+
41
+ steps :
42
+ - name : test
43
+ image : rust:1
44
+ commands :
45
+ - cargo build --verbose --all
46
+ - cargo test --verbose --all
You can’t perform that action at this time.
0 commit comments