Skip to content

Commit

Permalink
ci: explicitly use rust compiler 1.77.1 on python ci runs
Browse files Browse the repository at this point in the history
  • Loading branch information
thunderbiscuit committed May 10, 2024
1 parent e9a7628 commit c0dd8da
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/live-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,11 @@ jobs:
uses: actions/checkout@v3
with:
submodules: true

- name: "Install Rust 1.77.1"
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: 1.77.1

- name: "Generate bdk.py and binaries"
run: bash ./scripts/generate-linux.sh
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/publish-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@ jobs:
uses: actions/checkout@v3
with:
submodules: true
# TODO 2: Other CI workflows use explicit Rust compiler versions, I think we should do the same here

- name: "Install Rust 1.77.1"
- uses: actions-rs/toolchain@v1
with:
toolchain: stable

toolchain: 1.77.1
- name: "Generate bdk.py and binaries"
run: bash ./scripts/generate-linux.sh

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,12 @@ jobs:
uses: actions/checkout@v3
with:
submodules: true

- name: "Install Rust 1.77.1"
- uses: actions-rs/toolchain@v1
with:
toolchain: stable

toolchain: 1.77.1
- name: "Generate bdk.py and binaries"
run: bash ./scripts/generate-linux.sh

Expand Down

0 comments on commit c0dd8da

Please sign in to comment.