Skip to content

Commit bd4ed17

Browse files
authored
Merge branch 'main' into sy/sync-multithreading
2 parents bd68610 + fee9be2 commit bd4ed17

File tree

304 files changed

+9248
-2421
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

304 files changed

+9248
-2421
lines changed

.github/actions/install-rust/action.yml

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -32,31 +32,11 @@ runs:
3232
elif [ "${{ inputs.toolchain }}" = "msrv" ]; then
3333
echo "version=1.$msrv.0" >> "$GITHUB_OUTPUT"
3434
elif [ "${{ inputs.toolchain }}" = "wasmtime-ci-pinned-nightly" ]; then
35-
echo "version=nightly-2025-11-01" >> "$GITHUB_OUTPUT"
35+
echo "version=nightly-2025-11-25" >> "$GITHUB_OUTPUT"
3636
else
3737
echo "version=${{ inputs.toolchain }}" >> "$GITHUB_OUTPUT"
3838
fi
3939
40-
41-
# GitHub Actions default runners have `rustup` instaleld, but IBM-provided
42-
# s390x runners do not. If we're using the IBM runner then install rustup.
43-
- name: Install rustup
44-
shell: bash
45-
if: runner.arch == 'S390X'
46-
run: |
47-
export RUSTUP_HOME=${{ runner.tool_cache }}/rustup
48-
export CARGO_HOME=${{ runner.tool_cache }}/cargo
49-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | \
50-
sh -s -- \
51-
-y \
52-
--default-toolchain ${{ steps.select.outputs.version }} \
53-
--profile minimal \
54-
--no-modify-path
55-
echo "RUSTUP_HOME=$RUSTUP_HOME" >> $GITHUB_ENV
56-
echo "CARGO_HOME=$CARGO_HOME" >> $GITHUB_ENV
57-
echo "$CARGO_HOME/bin" >> $GITHUB_PATH
58-
59-
6040
- name: Install Rust
6141
shell: bash
6242
run: |

.github/workflows/triage.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: "Issue / PR Triage"
22

33
on:
4-
issues:
5-
types: ["labeled"]
64
schedule:
75
# Run pull request triage once an hour. Ideally, this would be on
86
# "labeled" types of pull request events, but that doesn't work if the pull

0 commit comments

Comments
 (0)