Ubuntu #2
Workflow file for this run
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: Ubuntu | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| tcl-tags: # User input for selecting Tcl tag | |
| description: 'Tcl version' | |
| required: true | |
| type: choice | |
| options: | |
| - '["core-9-0-0"]' | |
| - '["core-9-0-2"]' | |
| - '["core-8-6-10"]' | |
| - '["core-8-6-17"]' | |
| - '["main"]' | |
| - '["core-9-0-branch"]' | |
| - '["core-8-6-branch"]' | |
| - '["core-8-6-10", "core-9-0-0"]' | |
| - '["core-8-6-10", "core-8-6-17", "core-9-0-0", "core-9-0-2"]' | |
| default: '["core-8-6-10", "core-9-0-0"]' | |
| runners: # User input for selecting OS | |
| description: 'OS version' | |
| required: true | |
| type: choice | |
| options: | |
| - '["ubuntu-latest"]' | |
| - '["ubuntu-22.04"]' | |
| - '["ubuntu-24.04"]' | |
| - '["ubuntu-22.04", "ubuntu-24.04"]' | |
| default: '["ubuntu-latest"]' | |
| run-tests: # Whether tests should be run | |
| description: 'Run tests as well' | |
| required: false | |
| default: true | |
| type: boolean | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| runner-os: ${{ fromJSON(github.event.inputs.runners) }} | |
| tcl-tag: ${{ fromJSON(github.event.inputs.tcl-tags) }} | |
| runs-on: ${{ matrix.runner-os }} | |
| steps: | |
| - name: Setup Tcl | |
| id: tcl-setup-step | |
| uses: apnadkarni/tcl-setup@v1 | |
| with: | |
| tcl-tag: ${{ matrix.tcl-tag }} | |
| - name: Build extension | |
| id: tcl-build-step | |
| uses: apnadkarni/[email protected] | |
| with: | |
| run-tests: ${{ inputs.run-tests }} |