simplify vcpkg port overrides (#1019) #109
This file contains 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: Test Deployments | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- release-v* | |
pull_request: | |
branches: | |
- main | |
- release-v* | |
# cancel older, redundant runs of same workflow on same branch | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
docker-deployments: | |
name: Test Docker Deployments | |
runs-on: ubuntu-latest | |
steps: | |
- name: Full Checkout to Allow CMake to Find Version with Git | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run the Compose Test Script | |
shell: bash | |
run: docker/docker.test.bash | |
env: | |
I_AM_ROBOT: 1 |