Skip to content

Commit

Permalink
Merge pull request #22730 from rockwotj/pin-rustc
Browse files Browse the repository at this point in the history
[v24.1.x] gha: pin rustc for transform SDK builds
  • Loading branch information
rockwotj committed Aug 5, 2024
2 parents cfe8eee + 18a0a5f commit a34af40
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/transform-sdk-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,9 @@ jobs:
uses: actions/checkout@v4
- name: Set up Rust
run: |
rustup update stable --no-self-update
rustup default stable
rustup update 1.79 --no-self-update
rustup default 1.79
rustup component add rustfmt clippy
- name: Run tests
working-directory: src/transform-sdk/rust
run: cargo test --workspace
Expand All @@ -136,7 +137,8 @@ jobs:
uses: actions/checkout@v4
- name: Set up Rust
run: |
rustup update stable --no-self-update
rustup update 1.79 --no-self-update
rustup default 1.79
rustup target add wasm32-wasi
- name: Build integration tests
working-directory: src/transform-sdk/rust
Expand Down

0 comments on commit a34af40

Please sign in to comment.