File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 66 name : Check
77 runs-on : ubuntu-latest
88 steps :
9+ - name : Run sccache-cache
10+ uses : mozilla-actions/sccache-action@v0.0.9
11+
912 - name : Checkout sources
1013 uses : actions/checkout@v2
1114
1821
1922 - name : Run cargo check
2023 uses : actions-rs/cargo@v1
24+ env :
25+ SCCACHE_WEBDAV_ENDPOINT : " https://webdav.dulic-home.net"
26+ SCCACHE_WEBDAV_USER : " admin"
27+ SCCACHE_WEBDAV_PASSWORD : " ${{ secrets.WEB_DAV_PASSWORD }}"
28+ RUSTC_WRAPPER : " sccache"
2129 with :
2230 command : check
2331 args : --all-features
2634 name : Test Suite
2735 runs-on : ubuntu-latest
2836 steps :
37+ - name : Run sccache-cache
38+ uses : mozilla-actions/sccache-action@v0.0.9
39+
2940 - name : Checkout sources
3041 uses : actions/checkout@v2
3142
3849
3950 - name : Run cargo test
4051 uses : actions-rs/cargo@v1
52+ env :
53+ SCCACHE_WEBDAV_ENDPOINT : " https://webdav.dulic-home.net"
54+ SCCACHE_WEBDAV_USER : " admin"
55+ SCCACHE_WEBDAV_PASSWORD : " ${{ secrets.WEB_DAV_PASSWORD }}"
56+ RUSTC_WRAPPER : " sccache"
4157 with :
4258 command : test
4359 arg : --all-features
4662 name : Lints
4763 runs-on : ubuntu-latest
4864 steps :
65+ - name : Run sccache-cache
66+ uses : mozilla-actions/sccache-action@v0.0.9
67+
4968 - name : Checkout sources
5069 uses : actions/checkout@v2
5170
6584
6685 - name : Run cargo clippy
6786 uses : actions-rs/clippy-check@v1
87+ env :
88+ SCCACHE_WEBDAV_ENDPOINT : " https://webdav.dulic-home.net"
89+ SCCACHE_WEBDAV_USER : " admin"
90+ SCCACHE_WEBDAV_PASSWORD : " ${{ secrets.WEB_DAV_PASSWORD }}"
91+ RUSTC_WRAPPER : " sccache"
6892 with :
6993 token : ${{ secrets.GITHUB_TOKEN }}
7094 args : --all-features
You can’t perform that action at this time.
0 commit comments