Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch back to stable toolchain in tests #1522

Merged
merged 1 commit into from
Mar 11, 2023
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
run: pip install cffi
- name: Install python packages
run: pip install virtualenv ziglang~=0.10.0 twine uniffi-bindgen==0.23.0
- uses: dtolnay/rust-toolchain@beta
- uses: dtolnay/rust-toolchain@stable
id: rustup
with:
targets: wasm32-wasi # Additional target
Expand Down Expand Up @@ -320,7 +320,7 @@ jobs:
container: quay.io/pypa/${{ matrix.manylinux }}_x86_64
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@beta
- uses: dtolnay/rust-toolchain@stable
id: rustup
# Caching
- name: Cache cargo build
Expand Down Expand Up @@ -397,7 +397,7 @@ jobs:
container: ghcr.io/messense/manylinux2014-cross:aarch64
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@beta
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.platform.target }}
- name: Build wheels
Expand Down Expand Up @@ -436,7 +436,7 @@ jobs:
- 'setup.py'
- 'MANIFEST.in'
- '.github/workflows/test.yml'
- uses: dtolnay/rust-toolchain@beta
- uses: dtolnay/rust-toolchain@stable
if: ${{ steps.changes.outputs.changed == 'true' || contains(github.event.pull_request.labels.*.name, 'release') }}
# Caching
- name: Sccache Setup
Expand Down Expand Up @@ -486,7 +486,7 @@ jobs:
container: pyston/pyston:2.3.5
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@beta
- uses: dtolnay/rust-toolchain@stable
id: rustup
with:
targets: wasm32-wasi
Expand Down Expand Up @@ -522,7 +522,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y ${{ matrix.platform.apt-packages }}
- uses: dtolnay/rust-toolchain@beta
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.platform.target }}
- name: Cache cargo build
Expand Down