Rc add zfw calls 1.3.x #48
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: Main Test Workflow | |
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: | |
call-cmake-build: | |
name: Call CMake Build | |
uses: ./.github/workflows/cmake.yml | |
docker-deployments: | |
needs: [ call-cmake-build ] | |
name: Exercise CMake Artifacts | |
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: Download CMake Artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: linux-x64 | |
path: ./downloads | |
- name: Unpack CMake Artifacts | |
shell: bash | |
run: | | |
set -x | |
ls -horRAS ./downloads | |
mkdir -p ./build/amd64/linux/ | |
unzip -d ./build/amd64/linux/ ./downloads/linux-x64/ziti-edge-tunnel-Linux_x86_64.zip | |
- name: Run the Compose Test Script | |
shell: bash | |
run: docker/docker.test.bash | |
env: | |
I_AM_ROBOT: 1 | |
ZITI_EDGE_TUNNEL_BIN: ./build/amd64/linux/ziti-edge-tunnel |