Skip to content
Closed
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 4 additions & 2 deletions .github/actions/install-rust/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ runs:
range=${{ inputs.msrv_range }}

if [ "${{ inputs.toolchain }}" = "default" ]; then
echo "version=1.$((msrv+range)).0" >> "$GITHUB_OUTPUT"
#echo "version=1.$((msrv+range)).0" >> "$GITHUB_OUTPUT"
echo "version=beta" >> "$GITHUB_OUTPUT"
elif [ "${{ inputs.toolchain }}" = "msrv" ]; then
echo "version=1.$msrv.0" >> "$GITHUB_OUTPUT"
#echo "version=1.$msrv.0" >> "$GITHUB_OUTPUT"
echo "version=beta" >> "$GITHUB_OUTPUT"
elif [ "${{ inputs.toolchain }}" = "wasmtime-ci-pinned-nightly" ]; then
echo "version=nightly-2025-01-09" >> "$GITHUB_OUTPUT"
else
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ jobs:
platform-checks: ${{ steps.calculate.outputs.platform-checks }}
steps:
- uses: actions/checkout@v4
- run: rustup update beta && rustup default beta
- id: calculate
env:
GH_TOKEN: ${{ github.token }}
Expand Down
Loading
Loading