diff options
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 430098670..fc2de6d43 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,14 +19,9 @@ jobs: kind: test_release - os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }} kind: bench - # TODO(ry) Ideally we could use ubuntu-latest-xl for lint but there's - # a bug with dprint that is preventing this from running. - - os: ubuntu-latest + - os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }} kind: lint - # TODO(ry) Ideally we would use ubuntu-latest-xl for test_debug too, - # but there are race conditions in our test we are working around by - # using the slower runner. - - os: ubuntu-latest + - os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }} kind: test_debug # Warning: Do not upgrade test_release to newer version of ubuntu # runners. We need to link against older version of glibc in order to |