Skip to content

Commit f3dcdd7

Browse files
EwoutHrht
authored andcommitted
CI: Add job to test against Mesa pre-releases
Add a job to the Mesa-examples CI configuration to explicitly test against Mesa pre-releases. This could help detect regressions between the stable release and latest pre-release, or between the latest pre-release and main branch. It basically narrows the search range if one of jobs fail.
1 parent 7731c80 commit f3dcdd7

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/build_lint.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,21 @@ jobs:
3737
- name: Test with pytest
3838
run: pytest test_examples.py
3939

40+
build-pre:
41+
runs-on: ubuntu-latest
42+
steps:
43+
- uses: actions/checkout@v4
44+
- name: Set up Python
45+
uses: actions/setup-python@v5
46+
with:
47+
python-version: "3.12"
48+
- name: Install dependencies
49+
run: |
50+
pip install mesa --pre
51+
pip install pytest
52+
- name: Test with pytest
53+
run: pytest test_examples.py
54+
4055
build-main:
4156
runs-on: ubuntu-latest
4257
steps:

0 commit comments

Comments
 (0)