fix concurrency deadlock #3761
Workflow file for this run
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: CI build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
- release-* | |
workflow_dispatch: | |
workflow_call: | |
# no concurrency constraints for callable workflows, set in caller instead | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
name: build ${{ matrix.preset }} | |
env: | |
"VCPKG_BINARY_SOURCES": "clear;files,${{ github.workspace }}/vcpkg_cache,readwrite" | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: macOS-13 | |
name: macOS x86_64 | |
preset: macOS-x64 | |
- os: macOS-13 | |
name: macOS arm64 | |
preset: macOS-arm64 | |
- os: windows-latest | |
name: Windows x86_64 | |
preset: windows-x64-mingw | |
- os: windows-latest | |
name: Windows arm64 | |
preset: windows-arm64-vs2022 | |
- os: ubuntu-20.04 | |
name: Linux x86_64 | |
preset: linux-x64 | |
- os: ubuntu-20.04 | |
name: Linux arm | |
preset: linux-arm | |
- os: ubuntu-20.04 | |
name: Linux arm64 | |
preset: linux-arm64 | |
steps: | |
- name: Debug action | |
uses: hmarr/debug-action@v3 | |
- name: checkout workspace | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run CMake Composite Action | |
uses: ./.github/actions/build | |
with: | |
preset: ${{ matrix.preset }} | |
target: bundle | |
- name: list bundle artifacts | |
run: ls -R | |
working-directory: ./build/bundle/ | |
- name: list program artifacts | |
run: ls -R | |
working-directory: ./build/programs/ziti-edge-tunnel/ | |
- name: upload bundle artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.preset }} | |
path: ./build/bundle/ziti-edge-tunnel-*.zip | |
if-no-files-found: error |