File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -248,13 +248,17 @@ matrix:
248
248
stage : tools
249
249
- name : " rustfmt"
250
250
install : true
251
- before_script : rustup component add rustfmt-preview
252
- script : ci/all.sh check_fmt || true
251
+ script : |
252
+ if rustup component add rustfmt-preview ; then
253
+ ci/all.sh check_fmt || true
254
+ fi
253
255
stage : tools
254
256
- name : " clippy"
255
257
install : true
256
- before_script : rustup component add clippy-preview
257
- script : ci/all.sh clippy
258
+ script : |
259
+ if rustup component add clippy-preview ; then
260
+ ci/all.sh clippy
261
+ fi
258
262
stage : tools
259
263
260
264
allow_failures :
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ is-it-maintained-open-issues = { repository = "rust-lang-nursery/packed_simd" }
21
21
maintenance = { status = " experimental" }
22
22
23
23
[dependencies ]
24
- cfg-if = " ^0.1"
24
+ cfg-if = " ^0.1.6 "
25
25
core_arch = { version = " ^0.1.4" , optional = true }
26
26
27
27
[features ]
Original file line number Diff line number Diff line change 5
5
# Get latest ISPC binary for the target and put it in the path
6
6
git clone https://github.com/gnzlbg/ispc-binaries
7
7
cp ispc-binaries/ispc-${TARGET} ispc
8
-
9
- # Rust-bindgen requires RUSTFMT
10
- rustup component add rustfmt-preview
Original file line number Diff line number Diff line change 12
12
13
13
* [ API docs (` master ` branch)] [ master_docs ]
14
14
* [ Performance guide] [ perf_guide ]
15
- * [ API docs (` docs.rs ` )] [ docs.rs ] : ** CURRENTLY DOWN** due to
16
- https://github.com/rust-lang-nursery/packed_simd/issues/110
15
+ * [ API docs (` docs.rs ` )] [ docs.rs ]
17
16
* [ RFC2366 ` std::simd ` ] [ rfc2366 ] : - contains motivation, design rationale,
18
17
discussion, etc.
19
18
You can’t perform that action at this time.
0 commit comments