Skip to content

Commit

Permalink
fix: switch to tera to avoid transient build errors (#5276)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanabi1224 authored Feb 13, 2025
1 parent f2d8563 commit a2ba605
Show file tree
Hide file tree
Showing 11 changed files with 350 additions and 174 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/rust-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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:
Expand All @@ -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
Expand Down
212 changes: 158 additions & 54 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ rlimit = "0.10"
rlp = "0.6"
rs-car-ipfs = "0.3"
rust2go = { workspace = true }
sailfish = "0.9"
schemars = { version = "0.8", features = ["chrono", "uuid1"] }
scopeguard = "1"
semver = "1"
Expand All @@ -200,6 +199,7 @@ tabled = "0.17"
tap = "1"
tar = "0.4"
tempfile = "3"
tera = { version = "1", default-features = false }
thiserror = "2"
ticker = "0.1"
tokio = { version = "1", features = ['full'] }
Expand Down
Loading

0 comments on commit a2ba605

Please sign in to comment.