Skip to content

Commit 66801ec

Browse files
committed
Finished proper ctest support in ubuntu-checks action
1 parent 5d658fd commit 66801ec

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/run-ubuntu-checks.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,11 @@ jobs:
9797
if: steps.cache-python.outputs.cache-hit != 'true'
9898
run: pyenv install ${{ matrix.python }} --debug -v
9999

100-
# python dev.py build --coverage --lax --ctest
101100
- name: Build pygame-ce
102101
id: build-pygame-ce
103102
run: |
104103
pyenv global ${{ matrix.python }}-debug
105-
python dev.py build --lax --coverage
104+
python dev.py build --lax --coverage --ctest
106105
107106
- name: Run tests
108107
env:
@@ -126,14 +125,14 @@ jobs:
126125
if: ${{ steps.gen-coverage.conclusion == 'success' && !cancelled() }}
127126
uses: actions/upload-artifact@v4
128127
with:
129-
name: pygame-wheels-coverage
128+
name: pygame-wheels-coverage-{ matrix.os }-{ matrix.python }
130129
path: ./out
131130

132131
- name: Upload ctest log
133132
if: !cancelled()
134133
uses: actions/upload-artifact@v4
135134
with:
136-
name: ctest_suite_log
135+
name: ctest_suite_log-{ matrix.os }-{ matrix.python }
137136
path: ./ctest.log
138137

139138
# Run cppcheck static analysis on src_c changes

0 commit comments

Comments
 (0)