diff options
| author | Dan Engelbrecht <[email protected]> | 2024-03-15 13:36:34 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-03-15 13:36:34 +0100 |
| commit | 56150a9449736934b96738320706ebbea3503735 (patch) | |
| tree | 8e70cab890e2fa761ec662e9bcc0f4c1d871957e /.github/workflows/validate.yml | |
| parent | remove vcpkg integrate install from windows setup (diff) | |
| download | zen-56150a9449736934b96738320706ebbea3503735.tar.xz zen-56150a9449736934b96738320706ebbea3503735.zip | |
make sure zenserver reacts and exist on SIGTERM signal (#8)
* make sure zenserver reacts and exist on SIGTERM signal
* add zen tag to all runners
* temp disable mac codesigning
Diffstat (limited to '.github/workflows/validate.yml')
| -rw-r--r-- | .github/workflows/validate.yml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 5152d8ad0..d2b45bb06 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -21,7 +21,7 @@ on: jobs: cancel-old-build: name: Cancel previous builds - runs-on: [hv, linux, x64] + runs-on: [hv, linux, x64, zen] steps: - name: Cancel Previous Runs @@ -33,7 +33,7 @@ jobs: clang-format: needs: cancel-old-build name: Check clang-format - runs-on: [hv, linux, x64] + runs-on: [hv, linux, x64, zen] steps: - uses: actions/checkout@v3 @@ -47,7 +47,7 @@ jobs: windows-build: needs: cancel-old-build name: Build & Test Windows - runs-on: [hv, windows, x64] + runs-on: [hv, windows, x64, zen] timeout-minutes: 25 strategy: matrix: @@ -110,7 +110,7 @@ jobs: linux-build: needs: cancel-old-build name: Build & Test Linux - runs-on: [hv, linux, x64] + runs-on: [hv, linux, x64, zen] timeout-minutes: 25 strategy: matrix: @@ -178,7 +178,7 @@ jobs: macos-build: needs: cancel-old-build name: Build & Test MacOS - runs-on: [hv, macos, x64] + runs-on: [hv, macos, x64, zen] timeout-minutes: 25 strategy: matrix: @@ -227,7 +227,8 @@ jobs: - name: Bundle if: ${{ matrix.config == 'release' }} run: | - xmake bundle -v -y --codesignidentity="Developer ID Application" + xmake bundle -v -y + # xmake bundle -v -y --codesignidentity="Developer ID Application" env: VCPKG_ROOT: ${{ github.workspace }}/.vcpkg |