diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2023-06-08 15:27:31 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-08 15:27:31 -0400 |
| commit | 524e4264573cd30a9bc3db28f44cf2b62e867dfa (patch) | |
| tree | ca831ba27aea40f2ef4afbc01d2db591d5713cb2 /.github/workflows/ci.yml | |
| parent | c775001466861eda14c037c8bc02706222e62fd5 (diff) | |
ci: use windows-xl runner for `--release` on main (#19429)
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86411c21c..05170935b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,11 +67,11 @@ jobs: job: test profile: debug os_display_name: windows-x86_64 - - os: windows-2022 + - os: '${{ github.repository == ''denoland/deno'' && ''windows-2022-xl'' || ''windows-2022'' }}' job: test profile: release skip_pr: true - runner: '${{ github.event_name == ''pull_request'' && ''ubuntu-22.04'' || ''windows-2022'' }}' + runner: '${{ github.event_name == ''pull_request'' && ''ubuntu-22.04'' || github.repository == ''denoland/deno'' && ''windows-2022-xl'' || ''windows-2022'' }}' os_display_name: windows-x86_64 - os: '${{ github.repository == ''denoland/deno'' && ''ubuntu-22.04-xl'' || ''ubuntu-22.04'' }}' job: test |
