Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6560915

Browse files
committedOct 11, 2023
graalpy: add CI config
1 parent cad2646 commit 6560915

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed
 

‎.github/workflows/build.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
build:
2828
continue-on-error: ${{ endsWith(inputs.python-version, '-dev') || contains(fromJSON('["3.7", "pypy3.7"]'), inputs.python-version) }}
2929
runs-on: ${{ inputs.os }}
30+
if: ${{ !(startsWith(inputs.python-version, 'graalpy') && startsWith(inputs.os, 'windows')) }}
3031
steps:
3132
- uses: actions/checkout@v4
3233

@@ -77,7 +78,7 @@ jobs:
7778
cargo build --no-default-features
7879
7980
# Run tests (except on PyPy, because no embedding API).
80-
- if: ${{ !startsWith(inputs.python-version, 'pypy') }}
81+
- if: ${{ !startsWith(inputs.python-version, 'pypy') && !startsWith(inputs.python-version, 'graalpy') }}
8182
name: Test (no features)
8283
run: cargo test --no-default-features --lib --tests
8384

@@ -95,17 +96,17 @@ jobs:
9596
run: cargo build --lib --tests --no-default-features --features "abi3-py37 full ${{ inputs.extra-features }}"
9697

9798
# Run tests (except on PyPy, because no embedding API).
98-
- if: ${{ !startsWith(inputs.python-version, 'pypy') }}
99+
- if: ${{ !startsWith(inputs.python-version, 'pypy') && !startsWith(inputs.python-version, 'graalpy') }}
99100
name: Test
100101
run: cargo test --no-default-features --features "full ${{ inputs.extra-features }}"
101102

102103
# Run tests again, but in abi3 mode
103-
- if: ${{ !startsWith(inputs.python-version, 'pypy') }}
104+
- if: ${{ !startsWith(inputs.python-version, 'pypy') && !startsWith(inputs.python-version, 'graalpy') }}
104105
name: Test (abi3)
105106
run: cargo test --no-default-features --features "abi3 full ${{ inputs.extra-features }}"
106107

107108
# Run tests again, for abi3-py37 (the minimal Python version)
108-
- if: ${{ (!startsWith(inputs.python-version, 'pypy')) && (inputs.python-version != '3.7') }}
109+
- if: ${{ (!startsWith(inputs.python-version, 'pypy') && !startsWith(inputs.python-version, 'graalpy')) && (inputs.python-version != '3.7') }}
109110
name: Test (abi3-py37)
110111
run: cargo test --no-default-features --features "abi3-py37 full ${{ inputs.extra-features }}"
111112

‎.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ jobs:
199199
"pypy3.8",
200200
"pypy3.9",
201201
"pypy3.10",
202+
"graalpy23.1",
202203
]
203204
platform:
204205
[

0 commit comments

Comments
 (0)
Please sign in to comment.