refine parsing policykit and systemd versions #3245
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: | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
workflow_call: | |
# 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: | |
build: | |
runs-on: ${{ matrix.os }} | |
container: ${{ matrix.container }} | |
name: build ${{ matrix.preset }} | |
env: {} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: macOS-11 | |
name: macOS x86_64 | |
preset: macOS-x64 | |
- os: macOS-11 | |
name: macOS arm64 | |
preset: macOS-arm64 | |
- os: windows-latest | |
name: Windows x86_64 | |
preset: windows-x64 | |
- os: windows-latest | |
name: Windows arm64 | |
preset: windows-arm64 | |
- os: ubuntu-20.04 | |
container: openziti/ziti-builder:1.0.7 | |
name: Linux x86_64 | |
preset: linux-x64 | |
- os: ubuntu-20.04 | |
container: openziti/ziti-builder:1.0.7 | |
name: Linux arm | |
preset: linux-arm | |
- os: ubuntu-20.04 | |
container: openziti/ziti-builder:1.0.7 | |
name: Linux arm64 | |
preset: linux-arm64 | |
steps: | |
- name: Debug action | |
uses: hmarr/[email protected] | |
- name: checkout workspace | |
uses: actions/checkout@v3 | |
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@v3 | |
with: | |
name: ${{ matrix.preset }} | |
path: ./build/bundle/ziti-edge-tunnel-*.zip | |
if-no-files-found: error |