pods (#566) #24
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## **Warnings When Modifying CI Files** | |
| ### 1. **Do not modify CI files unless absolutely necessary.** | |
| ### 2. **Do not disable any CI tests**—all tests must remain active. | |
| ### 3. **Do not change the current ISO build workflow.** | |
| ### 4. **CI test scripts follow a fixed numbering system.** To add new tests, use a new range (e.g., `30000-40000`, `50000`), and do not modify existing numbered files. | |
| ### 5. **If using `penguins-wardrobe` for builds, add new CI tests instead of modifying existing files or workflows.** | |
| ### 6. **All CI file modifications must be submitted in a new Pull Request and reviewed by @gnuhub—do not merge directly.** | |
| ### 7. **For experimental changes, create a new branch instead of modifying `master`.** | |
| name: 21005-ubuntu2004-vm-test | |
| on: | |
| push: | |
| paths-ignore: | |
| - '*.md' | |
| - '*.txt' | |
| - '.github/**' | |
| - 'pods/**' | |
| branches: | |
| - 'master' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: 21005-ubuntu2004-vm-test | |
| runs-on: ubuntu-20.04 | |
| timeout-minutes: 7200 | |
| steps: | |
| - name: Check Out Repo | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js 18 | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: 18.x | |
| - name: run 21005-ubuntu2004-vm-test.sh | |
| run: | | |
| ./21005-ubuntu2004-vm-test.sh |