Skip to content

Commit 874703b

Browse files
[ci] Dump more info when compiling system dep
1 parent 24305f6 commit 874703b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/system-dep.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
15-
- name: Setup Python
16-
uses: actions/setup-python@v4
1715
- name: Install dependencies
1816
run: |
1917
python -m pip install --upgrade pip
@@ -30,6 +28,11 @@ jobs:
3028
python -m pip install .
3129
python -m pip install . 'pythran[test]'
3230
printf '[compiler]\nblas=scipy-openblas\n' > ~/.config/.pythranrc
31+
- name: Compilation info
32+
run: |
33+
printf '#pythran export g\ng = 1' > dump.py
34+
python -m pythran.run -v dump.py
35+
x86_64-linux-gnu-gcc --version
3336
- name: Testing boost and xsimd integration
3437
run: |
3538
pytest pythran/tests/test_scipy.py -v -x --numprocesses=auto $PYTEST_ARGS

0 commit comments

Comments
 (0)