Skip to content

Commit c5aacbd

Browse files
authored
ci: run 3.14 on PR for the moment (#5309)
* ci: run 3.14 on PR for the moment * use `-dev` suffixes
1 parent 18480c7 commit c5aacbd

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ jobs:
133133
- name: Test python examples and tests
134134
shell: bash
135135
run: nox -s test-py
136-
continue-on-error: ${{ endsWith(inputs.python-version, '-dev') }}
137136
env:
138137
CARGO_TARGET_DIR: ${{ github.workspace }}/target
139138

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,24 @@ jobs:
196196
python-architecture: "x64",
197197
rust-target: "x86_64-unknown-linux-gnu",
198198
}
199+
# As we approach 3.14 release date, let's also have testing for 3.14 and 3.14t
200+
# on linux
201+
- rust: stable
202+
python-version: "3.14-dev"
203+
platform:
204+
{
205+
os: "ubuntu-latest",
206+
python-architecture: "x64",
207+
rust-target: "x86_64-unknown-linux-gnu",
208+
}
209+
- rust: stable
210+
python-version: "3.14t-dev"
211+
platform:
212+
{
213+
os: "ubuntu-latest",
214+
python-architecture: "x64",
215+
rust-target: "x86_64-unknown-linux-gnu",
216+
}
199217

200218
build-full:
201219
if: ${{ contains(github.event.pull_request.labels.*.name, 'CI-build-full') || github.event_name != 'pull_request' }}

0 commit comments

Comments
 (0)