diff options
| author | Stefan Boberg <[email protected]> | 2024-03-20 12:30:55 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2024-03-20 12:30:55 +0100 |
| commit | 62aa21f3eff2ccb6d169b9f704d4ef62bd8dc0a6 (patch) | |
| tree | 0c03d356e8118abeb20ec298771812442ed9a6b7 /.github/workflows | |
| parent | Enabled signing on windows agents again (#12) (diff) | |
| download | zen-62aa21f3eff2ccb6d169b9f704d4ef62bd8dc0a6.tar.xz zen-62aa21f3eff2ccb6d169b9f704d4ef62bd8dc0a6.zip | |
remove hv tags on actions since they are no longer useful
we use `zen` tags to discriminate now instead
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 9dffc5853..ecf786d59 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -11,7 +11,7 @@ on: jobs: bundle-windows: - runs-on: [hv, windows, x64, zen] + runs-on: [windows, x64, zen] timeout-minutes: 25 steps: @@ -59,7 +59,7 @@ jobs: path: build/zenserver-win64.zip bundle-linux: - runs-on: [hv, linux, x64, zen] + runs-on: [linux, x64, zen] timeout-minutes: 25 steps: @@ -119,7 +119,7 @@ jobs: path: build/zenserver-linux.zip bundle-macos: - runs-on: [hv, macos, x64, zen] + runs-on: [macos, x64, zen] timeout-minutes: 25 steps: @@ -179,7 +179,7 @@ jobs: path: build/zenserver-macos.zip create-release: - runs-on: [hv, linux, x64, zen] + runs-on: [linux, x64, zen] timeout-minutes: 5 needs: [bundle-linux, bundle-macos, bundle-windows] diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 68b5f0804..991ef25c5 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, zen] + runs-on: [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, zen] + runs-on: [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, zen] + runs-on: [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, zen] + runs-on: [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, zen] + runs-on: [macos, x64, zen] timeout-minutes: 25 strategy: matrix: |