forked from simd-lite/simd-json
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.drone.yml
More file actions
28 lines (26 loc) · 674 Bytes
/
.drone.yml
File metadata and controls
28 lines (26 loc) · 674 Bytes
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
kind: pipeline
name: test-on-arm64
platform:
arch: arm64
steps:
- name: test
image: rust:1
environment:
RUSTFLAGS: "-C target-cpu=native"
CODECOV_TOKEN:
from_secret: CODECOV_TOKEN
commands:
- rustup default nightly
- rustup update
- cargo clean && cargo +nightly build --verbose --all
- cargo +nightly test --verbose --all
# - cargo +nightly install cargo-clippy -f
# - cargo +nightly clippy --verbose --all
# - cargo +nightly install cargo-tarpaulin -f
# - cargo +nightly tarpaulin -v --out Xml
#- name: coverage
# image: plugins/codecov
# settings:
# token: $CODECOV_TOKEN
# files:
# - '*.xml'