mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 12:37:00 +01:00
sccache github actions fixes (#1593)
* specifying version per https://github.com/Mozilla-Actions/sccache-action/issues/41#issuecomment-1531365155
This commit is contained in:
parent
8eb031424a
commit
af01301acd
3
.github/workflows/clippy.yml
vendored
3
.github/workflows/clippy.yml
vendored
|
@ -22,7 +22,8 @@ jobs:
|
|||
- uses: actions/checkout@v3
|
||||
- name: Setup sccache
|
||||
uses: mozilla-actions/sccache-action@v0.0.3
|
||||
|
||||
with:
|
||||
version: "v0.4.2"
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt-get update && \
|
||||
|
|
2
.github/workflows/debian_package_kanidm.yml
vendored
2
.github/workflows/debian_package_kanidm.yml
vendored
|
@ -48,6 +48,8 @@ jobs:
|
|||
uses: dtolnay/rust-toolchain@stable
|
||||
- name: Setup sccache
|
||||
uses: mozilla-actions/sccache-action@v0.0.3
|
||||
with:
|
||||
version: "v0.4.2"
|
||||
- name: Build packages
|
||||
run: |
|
||||
make -f platform/debian/Makefile debs/all
|
||||
|
|
2
.github/workflows/rust_build.yml
vendored
2
.github/workflows/rust_build.yml
vendored
|
@ -23,6 +23,8 @@ jobs:
|
|||
uses: dtolnay/rust-toolchain@stable
|
||||
- name: Setup sccache
|
||||
uses: mozilla-actions/sccache-action@v0.0.3
|
||||
with:
|
||||
version: "v0.4.2"
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
|
|
2
.github/workflows/wasm_test.yml
vendored
2
.github/workflows/wasm_test.yml
vendored
|
@ -26,6 +26,8 @@ jobs:
|
|||
uses: dtolnay/rust-toolchain@stable
|
||||
- name: Setup sccache
|
||||
uses: mozilla-actions/sccache-action@v0.0.3
|
||||
with:
|
||||
version: "v0.4.2"
|
||||
|
||||
- name: Install wasm-pack
|
||||
run: cargo install wasm-pack
|
||||
|
|
2
.github/workflows/windows_build.yml
vendored
2
.github/workflows/windows_build.yml
vendored
|
@ -30,6 +30,8 @@ jobs:
|
|||
uses: dtolnay/rust-toolchain@stable
|
||||
- name: Setup sccache
|
||||
uses: mozilla-actions/sccache-action@v0.0.3
|
||||
with:
|
||||
version: "v0.4.2"
|
||||
- run: cargo build -p kanidm_client -p kanidm_tools -p orca -p daemon
|
||||
# yamllint disable-line rule:line-length
|
||||
- run: cargo test -p kanidm_client -p kanidm_tools -p orca -p daemon -p kanidmd_core
|
||||
|
|
Loading…
Reference in a new issue