-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: github actions using the correct rust versions
- Loading branch information
Showing
4 changed files
with
30 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
name: Setup Rust Builder | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Set up rust tools | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
toolchain: 1.79.0 | ||
components: clippy | ||
cache-directories: | | ||
./.build | ||
/tmp/cargo | ||
- name: Run sccache | ||
uses: mozilla-actions/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,8 +20,8 @@ jobs: | |
submodules: recursive | ||
- name: Fetch tags | ||
run: git fetch --tags | ||
- name: Run sccache | ||
uses: mozilla-actions/[email protected] | ||
- name: Setup Builder | ||
uses: ./.github/actions/setup-builder | ||
- name: Build | ||
run: EXTRA_BUILD_ARTIFACTS= make build | ||
- name: Login to Quay.io | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,8 +27,8 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Run sccache | ||
uses: mozilla-actions/[email protected] | ||
- name: Setup Builder | ||
uses: ./.github/actions/setup-builder | ||
- name: Build skctl | ||
run: make skctl | ||
- name: Check version | ||
|
@@ -38,11 +38,11 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repo and build scripts | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Run sccache | ||
uses: mozilla-actions/[email protected] | ||
- name: Setup Builder | ||
uses: ./.github/actions/setup-builder | ||
- name: Build | ||
run: make build | ||
- name: Regenerate CRDs | ||
|
@@ -56,11 +56,11 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repo and build scripts | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Run sccache | ||
uses: mozilla-actions/[email protected] | ||
- name: Setup Builder | ||
uses: ./.github/actions/setup-builder | ||
- name: rustfmt nightly | ||
run: | | ||
rustup toolchain install nightly-x86_64-unknown-linux-gnu | ||
|
@@ -81,11 +81,11 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repo and build scripts | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Run sccache | ||
uses: mozilla-actions/[email protected] | ||
- name: Setup Builder | ||
uses: ./.github/actions/setup-builder | ||
- name: Install grcov | ||
run: | | ||
curl -LO https://github.com/mozilla/grcov/releases/download/v0.8.18/grcov-x86_64-unknown-linux-gnu.tar.bz2 | ||
|
@@ -107,7 +107,7 @@ jobs: | |
- test | ||
steps: | ||
- name: Check out repo and build scripts | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Download coverage | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters