File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change 19
19
20
20
jobs :
21
21
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
24
24
timeout-minutes : 160
25
25
strategy :
26
26
fail-fast : false
27
27
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]
32
30
steps :
33
31
34
32
with :
35
- python-version : ${{ matrix.python_version[0] }}
33
+ python-version : ${{ matrix.python-version }}
36
34
37
35
38
36
with :
54
52
python -m pip install .
55
53
python -m pip install . 'pythran[test]'
56
54
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
58
55
printf 'cflags=-std=c++11 -Wall -Werror -Wno-unknown-pragmas -Wno-unused-local-typedefs -Wno-cpp -Wno-deprecated-declarations' >> ~/.config/.pythranrc
59
56
if test "${{ matrix.cpp-version }}" = "clang-13" ; then printf -- " -Wno-absolute-value -Wno-parentheses-equality\n" ; else printf "\n" ; fi >> ~/.config/.pythranrc
60
57
- name : Testing minimal CLI
You can’t perform that action at this time.
0 commit comments