Skip to content

Commit 6fa7a86

Browse files
fixup! use normal ubuntu runner
1 parent e9d6146 commit 6fa7a86

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/workflows/build-tarball.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ env:
6565
PYTHON_VERSION: '3.14'
6666
FLAKY_TESTS: keep_retrying
6767
CLANG_VERSION: '19'
68+
RUSTC_VERSION: '1.85'
6869

6970
permissions:
7071
contents: read
@@ -114,6 +115,11 @@ jobs:
114115
uses: ./.github/actions/install-clang
115116
with:
116117
clang-version: ${{ env.CLANG_VERSION }}
118+
- name: Install Rust ${{ env.RUSTC_VERSION }}
119+
if: ${{ github.event_name != 'workflow_dispatch' }}
120+
run: |
121+
rustup override set "$RUSTC_VERSION"
122+
rustup --version
117123
- name: Set up Python ${{ env.PYTHON_VERSION }}
118124
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
119125
with:

.github/workflows/test-shared.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,6 @@ jobs:
120120
with:
121121
persist-credentials: false
122122

123-
- name: Install Rust ${{ env.RUSTC_VERSION }}
124-
if: ${{ github.event_name != 'workflow_dispatch' }}
125-
run: |
126-
rustup override set "$RUSTC_VERSION"
127-
rustup --version
128-
129123
- name: Make tarball
130124
if: ${{ github.event_name != 'workflow_dispatch' }}
131125
run: |
@@ -166,6 +160,12 @@ jobs:
166160
name: tarballs
167161
path: tarballs
168162

163+
- name: Install Rust ${{ env.RUSTC_VERSION }}
164+
if: ${{ github.event_name != 'workflow_dispatch' }}
165+
run: |
166+
rustup override set "$RUSTC_VERSION"
167+
rustup --version
168+
169169
- name: Extract tarball
170170
if: ${{ github.event_name != 'workflow_dispatch' }}
171171
run: |

0 commit comments

Comments
 (0)