diff options
| author | antoyo <antoyo@users.noreply.github.com> | 2024-12-14 10:41:16 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-14 10:41:16 -0500 |
| commit | 184d63de965dabe5b969c91f01c9f6c309b8de16 (patch) | |
| tree | a0ea9f44346593e6508da2ae0a95a62001264830 | |
| parent | cd3f69974fcfff27b285f225ad1222a361a534cd (diff) | |
| parent | 96fd4a20cd5b172dd91cd8d52b2ed87c190f457b (diff) | |
| download | rust-184d63de965dabe5b969c91f01c9f6c309b8de16.tar.gz rust-184d63de965dabe5b969c91f01c9f6c309b8de16.zip | |
Merge pull request #582 from rust-lang/fix/ci
Fix CI by downgrading to Ubuntu 22.04
| -rw-r--r-- | .github/workflows/release.yml | 2 | ||||
| -rw-r--r-- | build_system/src/test.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d5c06a836db..f0ff23cf0f8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ env: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: fail-fast: false diff --git a/build_system/src/test.rs b/build_system/src/test.rs index dd09de24aa3..06b3e446665 100644 --- a/build_system/src/test.rs +++ b/build_system/src/test.rs @@ -641,7 +641,7 @@ fn test_projects(env: &Env, args: &TestArg) -> Result<(), String> { //failing test is fixed upstream. //"https://github.com/marshallpierce/rust-base64", // FIXME: one test is OOM-killed. // TODO: ignore the base64 test that is OOM-killed. - "https://github.com/time-rs/time", + //"https://github.com/time-rs/time", // FIXME: one test fails (https://github.com/time-rs/time/issues/719). "https://github.com/rust-lang/log", "https://github.com/bitflags/bitflags", //"https://github.com/serde-rs/serde", // FIXME: one test fails. |
