Installer Canary (Docker) #60
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
| name: Installer Canary (Docker) | |
| on: | |
| schedule: | |
| - cron: "30 7 * * *" # 7:30 AM UTC daily | |
| workflow_dispatch: | |
| inputs: | |
| ubuntu: | |
| description: "Ubuntu version: 24.04, 25.04, or all" | |
| default: "24.04" | |
| required: true | |
| mode: | |
| description: "Install mode: vibe or safe" | |
| default: "vibe" | |
| required: true | |
| jobs: | |
| canary: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 90 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Run installer canary | |
| env: | |
| ACFS_CHECKSUMS_REF: main | |
| run: | | |
| chmod +x ./tests/vm/test_install_ubuntu.sh | |
| UBUNTU="${{ inputs.ubuntu || '24.04' }}" | |
| MODE="${{ inputs.mode || 'vibe' }}" | |
| if [[ "${{ github.event_name }}" == "workflow_dispatch" && "$UBUNTU" == "all" ]]; then | |
| ./tests/vm/test_install_ubuntu.sh --all --mode "$MODE" | |
| else | |
| ./tests/vm/test_install_ubuntu.sh --ubuntu "$UBUNTU" --mode "$MODE" | |
| fi |