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/validate.yml | |
| 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/validate.yml')
| -rw-r--r-- | .github/workflows/validate.yml | 10 |
1 files changed, 5 insertions, 5 deletions
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: |