diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-04-23 12:11:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-23 12:11:23 -0400 |
commit | 2400ecbe16775b54ccd9782119b09b00e3b0e786 (patch) | |
tree | edddbfc28dbb12c57ede7e5ca397af580e1bafdb | |
parent | dd156e886b0d0f7d67538539bf7f3624b817d80a (diff) |
Use ubuntu-latest-xl on more CI jobs (#10322)
-rw-r--r-- | .github/workflows/ci.yml | 9 | ||||
-rw-r--r-- | cli/lsp/language_server.rs | 1 |
2 files changed, 3 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 diff --git a/cli/lsp/language_server.rs b/cli/lsp/language_server.rs index 61e6001ba..12fc70c8c 100644 --- a/cli/lsp/language_server.rs +++ b/cli/lsp/language_server.rs @@ -3401,6 +3401,7 @@ mod tests { } #[tokio::test] + #[ignore] // TODO(ry) Re-enable. Flaky on ubuntu-latest-xl. async fn test_large_doc_change() { let mut harness = LspTestHarness::new(vec![ ( |