Skip to content

Commit 489477b

Browse files
committed
Add drone file
1 parent bab0acc commit 489477b

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

.drone.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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

0 commit comments

Comments
 (0)