-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: switch to tera to avoid transient build errors (#5276)
- Loading branch information
1 parent
f2d8563
commit a2ba605
Showing
11 changed files
with
350 additions
and
174 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 |
---|---|---|
|
@@ -34,7 +34,7 @@ env: | |
jobs: | ||
lint-all: | ||
name: All lint checks | ||
runs-on: ubuntu-24.04 | ||
runs-on: ubuntu-22.04-arm | ||
steps: | ||
- name: Configure SCCache variables | ||
run: | | ||
|
@@ -50,6 +50,9 @@ jobs: | |
uses: mozilla-actions/[email protected] | ||
timeout-minutes: ${{ fromJSON(env.CACHE_TIMEOUT_MINUTES) }} | ||
continue-on-error: true | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: "go.work" | ||
- name: Apt Dependencies | ||
uses: nick-fields/retry@v3 | ||
with: | ||
|
@@ -58,7 +61,7 @@ jobs: | |
command: | | ||
sudo apt-get install -y libclang-dev # required dep for cargo-spellcheck | ||
- name: Install Lint tools | ||
run: make install-lint-tools-ci | ||
run: make install-lint-tools-ci-arm | ||
env: | ||
RUSTFLAGS: "-Cstrip=symbols" | ||
- run: make lint-all | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.