Skip to content

Rc add zfw calls 1.3.x #48

Rc add zfw calls 1.3.x

Rc add zfw calls 1.3.x #48

Workflow file for this run

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