Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/DynamoDBForRules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
steps:
- name: Setup Rust
run: |
rustup toolchain install 1.86.0
rustup default 1.86.0
rustup toolchain install 1.93.1
rustup default 1.93.1
rustup target add wasm32-unknown-unknown

- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/FeatureCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
steps:
- name: Setup Rust
run: |
rustup toolchain install 1.86.0
rustup default 1.86.0
rustup toolchain install 1.93.1
rustup default 1.93.1
rustup target add wasm32-unknown-unknown

- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:

- name: Install LLVM
if: matrix.compiler == 'llvm'
run: sudo apt install -y libllvm18 llvm-18 llvm-18-dev llvm-18-runtime libpolly-18-dev libclang-common-18-dev
run: wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 21 && sudo apt install -y libllvm21 llvm-21 llvm-21-dev llvm-21-runtime libpolly-21-dev libclang-common-21-dev

- uses: actions/checkout@v4

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ModuleChecker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
- name: Build module checker
run: |
cd runtime
rustup toolchain install 1.86.0
rustup default 1.86.0
rustup toolchain install 1.93.1
rustup default 1.93.1
cargo build --release --bin module_checker --no-default-features --features cranelift

- name: Upload artifact
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/RustDocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.86.0
toolchain: 1.93.1
targets: wasm32-unknown-unknown

- name: Generate Documentation
Expand Down
Loading