Skip to content

Commit

Permalink
Merge pull request #21 from Layr-Labs/epociask--fix-ci
Browse files Browse the repository at this point in the history
fix: Failing Stylus tests in CI
  • Loading branch information
epociask authored Aug 5, 2024
2 parents d80e544 + fb316e8 commit 2980742
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,17 @@ jobs:
id: install-rust-nightly
with:
profile: minimal
toolchain: "nightly"

toolchain: "nightly-2024-07-30"
- name: Install rust wasm targets
run: rustup target add wasm32-wasi wasm32-unknown-unknown

- name: Install nightly wasm targets
run: |
rustup component add rust-src --toolchain nightly
rustup target add wasm32-unknown-unknown --toolchain nightly
nightly_toolchain='nightly-2024-07-30'
echo 'STYLUS_NIGHTLY_VER=+'"$nightly_toolchain" >> "$GITHUB_ENV"
rustup component add rust-src --toolchain "$nightly_toolchain"
rustup target add wasm32-unknown-unknown --toolchain "$nightly_toolchain"
- name: Cache Build Products
uses: actions/cache@v3
Expand Down

0 comments on commit 2980742

Please sign in to comment.