27
27
build :
28
28
continue-on-error : ${{ endsWith(inputs.python-version, '-dev') || contains(fromJSON('["3.7", "pypy3.7"]'), inputs.python-version) }}
29
29
runs-on : ${{ inputs.os }}
30
+ if : ${{ !(startsWith(inputs.python-version, 'graalpy') && startsWith(inputs.os, 'windows')) }}
30
31
steps :
31
32
- uses : actions/checkout@v4
32
33
77
78
cargo build --no-default-features
78
79
79
80
# 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') }}
81
82
name : Test (no features)
82
83
run : cargo test --no-default-features --lib --tests
83
84
@@ -95,17 +96,17 @@ jobs:
95
96
run : cargo build --lib --tests --no-default-features --features "abi3-py37 full ${{ inputs.extra-features }}"
96
97
97
98
# 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') }}
99
100
name : Test
100
101
run : cargo test --no-default-features --features "full ${{ inputs.extra-features }}"
101
102
102
103
# 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') }}
104
105
name : Test (abi3)
105
106
run : cargo test --no-default-features --features "abi3 full ${{ inputs.extra-features }}"
106
107
107
108
# 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') }}
109
110
name : Test (abi3-py37)
110
111
run : cargo test --no-default-features --features "abi3-py37 full ${{ inputs.extra-features }}"
111
112
0 commit comments