Skip to content

Commit 0d9778f

Browse files
authored
[GHA] Run buildbot checkconfig in GitHub Actions (#303)
This provides a stronger check that the buildbot configuration is correct than just running our minimal lit tests.
1 parent 41d1078 commit 0d9778f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/lit-tests.yml renamed to .github/workflows/litmus-tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permissions:
77

88
jobs:
99
check_zorg:
10-
name: llvm-zorg lit tests
10+
name: llvm-zorg litmus tests
1111
if: github.repository_owner == 'llvm'
1212
runs-on: ubuntu-24.04
1313
steps:
@@ -20,7 +20,11 @@ jobs:
2020
sudo ln -s /usr/bin/FileCheck-18 /usr/bin/FileCheck
2121
python3 -m venv venv
2222
source venv/bin/activate
23-
pip install buildbot==3.11.7
23+
pip install buildbot{,-worker}==3.11.7 urllib3
2424
echo "PATH=$PATH" >> "$GITHUB_ENV"
2525
- name: Run lit tests
2626
run: /usr/lib/llvm-18/build/utils/lit/lit.py -v --xfail jenkins/test_build.py test
27+
- name: Run buildbot checkconfig
28+
run: |
29+
cd buildbot/osuosl/master
30+
BUILDBOT_TEST=1 buildbot checkconfig

0 commit comments

Comments
 (0)