Skip to content

Commit

Permalink
CI: build: verify worlds all load (this should fail)
Browse files Browse the repository at this point in the history
  • Loading branch information
black-sliver committed Jun 11, 2024
1 parent c00fad1 commit 67d3c07
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,17 @@ jobs:
run: |
source venv/bin/activate
python setup.py build_exe --yes
- name: Check build loads expected worlds
run: |
cd build/exe*
# mv Players/Templates/meta.yaml .
ls -1 Players/Templates | sort > setup-player-templates.txt
rm -R Players/Templates
timeout 30 ./ArchipelagoLauncher "Generate Template Options" || true
ls -1 Players/Templates | sort > generated-player-templates.txt
cmp setup-player-templates.txt generated-player-templates.txt \
|| diff setup-player-templates.txt generated-player-templates.txt
# mv meta.yaml Plkayers/Templates/
- name: Store AppImage
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 67d3c07

Please sign in to comment.