File tree Expand file tree Collapse file tree 1 file changed +22
-17
lines changed Expand file tree Collapse file tree 1 file changed +22
-17
lines changed Original file line number Diff line number Diff line change 1313 - ' **.md'
1414
1515jobs :
16- toolchain_setup :
17- runs-on : ubuntu-latest
18-
19- steps :
20- - name : Checkout
21- uses : actions/checkout@v2.0.0
22- - name : rust-toolchain
23- uses : actions-rs/toolchain@v1.0.3
24- with :
25- toolchain : nightly
26- target : x86_64-unknown-linux-gnu
27- profile : minimal
28- - name : Master Toolchain Setup
29- run : bash setup-toolchain.sh
30-
3116 build :
32- needs : toolchain_setup
3317 runs-on : ubuntu-latest
3418
3519 steps :
20+ - name : Checkout
21+ uses : actions/checkout@v2.0.0
22+ - name : rust-toolchain
23+ uses : actions-rs/toolchain@v1.0.3
24+ with :
25+ toolchain : nightly
26+ target : x86_64-unknown-linux-gnu
27+ profile : minimal
28+ - name : Master Toolchain Setup
29+ run : bash setup-toolchain.sh
3630 - name : Build
3731 run : cargo build --features integration
32+ - name : Upload traget/
33+ uses : actions/upload-artifact@v1.0.0
34+ with :
35+ name : target
36+ path : target
3837
3938 test :
4039 strategy :
@@ -57,10 +56,16 @@ jobs:
5756 - ' rust-lang/log'
5857 - ' chronotope/chrono'
5958
60- needs : [toolchain_setup, build]
59+ needs : build
6160 runs-on : ubuntu-latest
6261
6362 steps :
63+ - name : Checkout
64+ uses : actions/checkout@v2.0.0
65+ - name : Download target/
66+ uses : actions/download-artifact@v1.0.0
67+ with :
68+ name : target
6469 - name : Test ${{ matrix.integration }}
6570 run : cargo test --test integration --features integration
6671 env :
You can’t perform that action at this time.
0 commit comments