mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 09:31:22 -05:00
Use ubuntu-latest-xl on more CI jobs (#10322)
This commit is contained in:
parent
dd156e886b
commit
2400ecbe16
2 changed files with 3 additions and 7 deletions
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
|
|
@ -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![
|
||||
(
|
||||
|
|
Loading…
Add table
Reference in a new issue