Skip to content

Commit

Permalink
CI: pin to Ubuntu 20.04. (#5407) (#5418)
Browse files Browse the repository at this point in the history
CI is currently broken because `ubuntu-latest` moved to 22.04, which is
missing at least one package (`libclang1-9` used in our CI jobs) and may
be causing other issues as well.

This PR pins us back to 20.04; separately we should look into upgrading
when issues are resolved.

Co-authored-by: Chris Fallin <[email protected]>
  • Loading branch information
alexcrichton and cfallin authored Dec 12, 2022
1 parent c874290 commit 63a3951
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:

doc:
name: Doc build
runs-on: ubuntu-latest
runs-on: ubuntu-20.04 # TODO: remove pin when fixed (#5408)
env:
CARGO_MDBOOK_VERSION: 0.4.21
RUSTDOCFLAGS: -Dbroken_intra_doc_links --cfg nightlydoc
Expand Down Expand Up @@ -335,7 +335,7 @@ jobs:
# Build and test the wasi-nn module.
test_wasi_nn:
name: Test wasi-nn module
runs-on: ubuntu-latest
runs-on: ubuntu-20.04 # TODO: remove pin when fixed (#5408)
steps:
- uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 63a3951

Please sign in to comment.