1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

chore(ci): use windows-2022 runner on skipped release job on PRs (#17398)

This commit is contained in:
David Sherret 2023-01-13 14:06:30 -05:00 committed by GitHub
parent 3d423e114e
commit e09d298a4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 4 deletions

View file

@ -2,12 +2,13 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import * as yaml from "https://deno.land/std@0.171.0/encoding/yaml.ts";
const windowsRunnerCondition =
"github.repository == 'denoland/deno' && 'windows-2022-xl' || 'windows-2022'";
const Runners = {
linux:
"${{ github.repository == 'denoland/deno' && 'ubuntu-20.04-xl' || 'ubuntu-20.04' }}",
macos: "macos-12",
windows:
"${{ github.repository == 'denoland/deno' && 'windows-2022-xl' || 'windows-2022' }}",
windows: `\${{ ${windowsRunnerCondition} }}`,
};
const installPkgsCommand =
@ -200,7 +201,7 @@ const ci = {
jobs: {
build: {
name: "${{ matrix.job }} ${{ matrix.profile }} ${{ matrix.os }}",
"runs-on": "${{ matrix.os }}",
"runs-on": "${{ matrix.runner || matrix.os }}",
"timeout-minutes": 120,
strategy: {
matrix: {
@ -223,6 +224,9 @@ const ci = {
},
{
os: Runners.windows,
// use a free runner on PRs since this will be skipped
runner:
`\${{ github.event_name == 'pull_request' && 'windows-2022' || (${windowsRunnerCondition}) }}`,
job: "test",
profile: "release",
skip_pr: true,

View file

@ -19,7 +19,7 @@ concurrency:
jobs:
build:
name: '${{ matrix.job }} ${{ matrix.profile }} ${{ matrix.os }}'
runs-on: '${{ matrix.os }}'
runs-on: '${{ matrix.runner || matrix.os }}'
timeout-minutes: 120
strategy:
matrix:
@ -35,6 +35,7 @@ jobs:
job: test
profile: fastci
- os: '${{ github.repository == ''denoland/deno'' && ''windows-2022-xl'' || ''windows-2022'' }}'
runner: '${{ github.event_name == ''pull_request'' && ''windows-2022'' || (github.repository == ''denoland/deno'' && ''windows-2022-xl'' || ''windows-2022'') }}'
job: test
profile: release
skip_pr: true