Skip to content

Commit fdb0ed9

Browse files
fixup! use normal ubuntu runner
1 parent bbe6078 commit fdb0ed9

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

.github/workflows/build-tarball.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,15 @@ 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
7172

7273
jobs:
7374
build-tarball:
7475
if: github.event.pull_request.draft == false
75-
runs-on: ubuntu-slim
76+
runs-on: ubuntu-latest
7677
steps:
7778
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7879
with:
@@ -82,6 +83,11 @@ jobs:
8283
with:
8384
python-version: ${{ env.PYTHON_VERSION }}
8485
allow-prereleases: true
86+
- name: Install Rust ${{ env.RUSTC_VERSION }}
87+
if: ${{ github.event_name != 'workflow_dispatch' }}
88+
run: |
89+
rustup override set "$RUSTC_VERSION"
90+
rustup --version
8591
- name: Environment Information
8692
run: npx envinfo
8793
- name: Make tarball
@@ -114,6 +120,11 @@ jobs:
114120
uses: ./.github/actions/install-clang
115121
with:
116122
clang-version: ${{ env.CLANG_VERSION }}
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
117128
- name: Set up Python ${{ env.PYTHON_VERSION }}
118129
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
119130
with:

.github/workflows/test-shared.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
build-tarball:
114114
if: github.event.pull_request.draft == false
115115
name: ${{ github.event_name == 'workflow_dispatch' && 'Skipped job' || 'Build slim tarball' }}
116-
runs-on: ubuntu-slim
116+
runs-on: ubuntu-latest
117117
steps:
118118
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
119119
if: ${{ github.event_name != 'workflow_dispatch' }}
@@ -166,6 +166,12 @@ jobs:
166166
name: tarballs
167167
path: tarballs
168168

169+
- name: Install Rust ${{ env.RUSTC_VERSION }}
170+
if: ${{ github.event_name != 'workflow_dispatch' }}
171+
run: |
172+
rustup override set "$RUSTC_VERSION"
173+
rustup --version
174+
169175
- name: Extract tarball
170176
if: ${{ github.event_name != 'workflow_dispatch' }}
171177
run: |

0 commit comments

Comments
 (0)