chore: sync installers from openclaw a54a8813bf22 #336
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: Install Matrix | |
| concurrency: | |
| group: install-matrix-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| inputs: | |
| mode: | |
| description: Matrix mode | |
| required: true | |
| default: dry-run | |
| type: choice | |
| options: | |
| - dry-run | |
| - full | |
| jobs: | |
| linux-install-matrix: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| image: | |
| - ubuntu:22.04 | |
| - ubuntu:24.04 | |
| - debian:12 | |
| - fedora:40 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Run matrix (push/pr) | |
| if: github.event_name != 'workflow_dispatch' | |
| run: bash scripts/test-install-matrix.sh --mode dry-run --image "${{ matrix.image }}" | |
| - name: Run matrix (manual) | |
| if: github.event_name == 'workflow_dispatch' | |
| run: bash scripts/test-install-matrix.sh --mode "${{ inputs.mode }}" --image "${{ matrix.image }}" |