diff options
| author | Stefan Boberg <[email protected]> | 2024-03-12 18:49:45 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2024-03-12 18:49:45 +0100 |
| commit | de3c307f353cdc7015d7b6a819853dadcf6137ec (patch) | |
| tree | fe5d2d344fe47f0c0f6851142b4524d0319b10b9 /.github/workflows | |
| parent | workflow fixes (#1) (diff) | |
| download | zen-de3c307f353cdc7015d7b6a819853dadcf6137ec.tar.xz zen-de3c307f353cdc7015d7b6a819853dadcf6137ec.zip | |
workflow tweaks
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/create_release.yml | 8 | ||||
| -rw-r--r-- | .github/workflows/validate.yml | 10 |
2 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index c417d412e..77ecc2f38 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -10,7 +10,7 @@ on: jobs: bundle-windows: - runs-on: [self-hosted, windows, x64] + runs-on: [self-hosted, windows, x64, hv] timeout-minutes: 25 steps: @@ -59,7 +59,7 @@ jobs: path: build/zenserver-win64.zip bundle-linux: - runs-on: [self-hosted, linux, x64] + runs-on: [self-hosted, linux, x64, hv] timeout-minutes: 25 steps: @@ -119,7 +119,7 @@ jobs: path: build/zenserver-linux.zip bundle-macos: - runs-on: [self-hosted, macos, x64] + runs-on: [self-hosted, macos, x64, hv] timeout-minutes: 25 steps: @@ -178,7 +178,7 @@ jobs: path: build/zenserver-macos.zip create-release: - runs-on: [self-hosted, linux, x64] + runs-on: [self-hosted, linux, x64, hv] timeout-minutes: 5 needs: [bundle-linux, bundle-macos, bundle-windows] diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 21f254dd4..3cf72f2af 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] 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] 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] 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] 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] timeout-minutes: 25 strategy: matrix: |