Skip to content

Commit 445fc88

Browse files
committed
fix pythran
1 parent 498d8b5 commit 445fc88

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/pythran.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,18 @@ on:
1919

2020
jobs:
2121
pythran-linux:
22-
name: Test ubuntu ${{ matrix.python_version[1] }} ${{ matrix.cpp-version }}
23-
runs-on: ${{ matrix.os }}
22+
name: Test ubuntu ${{ matrix.python_version }} ${{ matrix.cpp-version }}
23+
runs-on: ubuntu-22.04
2424
timeout-minutes: 160
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
os: [ubuntu-22.04]
29-
cpp-version: [g++-12, clang-cw137]
30-
python_version:
31-
- [pypy-3.11-nightly]
28+
python-version: [pypy-3.11-nightly]
29+
cpp-version: [g++-12, clang-13]
3230
steps:
3331
- uses: actions/[email protected]
3432
with:
35-
python-version: ${{ matrix.python_version[0] }}
33+
python-version: ${{ matrix.python-version }}
3634

3735
- uses: actions/[email protected]
3836
with:
@@ -54,7 +52,6 @@ jobs:
5452
python -m pip install .
5553
python -m pip install . 'pythran[test]'
5654
printf '[commpiler]\nblas=openblas\n' > ~/.config/.pythranrc
57-
printf 'cflags=-std=c++11 -Wall -Werror -Wno-unknown-pragmas -Wno-unused-local-typedefs -Wno-cpp -Wno-deprecated-declarations -Wno-absolute-value\n' >> ~/.config/.pythranrc
5855
printf 'cflags=-std=c++11 -Wall -Werror -Wno-unknown-pragmas -Wno-unused-local-typedefs -Wno-cpp -Wno-deprecated-declarations' >> ~/.config/.pythranrc
5956
if test "${{ matrix.cpp-version }}" = "clang-13" ; then printf -- " -Wno-absolute-value -Wno-parentheses-equality\n" ; else printf "\n" ; fi >> ~/.config/.pythranrc
6057
- name: Testing minimal CLI

0 commit comments

Comments
 (0)