Skip to content

Commit

Permalink
ci: use 'ubuntu-20.04' runner image rather than 'ubuntu-latest' (deno…
Browse files Browse the repository at this point in the history
…land#12733)

The existing ubuntu-latest-xl runner image (based on Ubuntu 18.04 XL) is
deprecated and will retire soon. Migrate to ubuntu-20.04-xl instead.
  • Loading branch information
piscisaureus committed Nov 11, 2021
1 parent 72a6231 commit a2c8f55
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@ jobs:
- os: windows-2019
job: test
profile: release
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-20.04-xl' || 'ubuntu-20.04' }}
job: test
profile: release
use_sysroot: true
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-20.04-xl' || 'ubuntu-20.04' }}
job: bench
profile: release
use_sysroot: true
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-20.04-xl' || 'ubuntu-20.04' }}
job: test
profile: debug
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-20.04-xl' || 'ubuntu-20.04' }}
job: lint
profile: debug

Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
run: |
# Avoid running man-db triggers, which sometimes takes several minutes
# to complete.
sudo apt-get remove -y --purge man-db
sudo apt-get remove --purge -y man-db
sudo apt-get update
sudo apt-get install debootstrap
Expand All @@ -190,9 +190,9 @@ jobs:
curl https://apt.llvm.org/llvm-snapshot.gpg.key |
gpg --dearmor |
sudo dd of=/sysroot/etc/apt/trusted.gpg.d/llvm-snapshot.gpg
sudo chroot /sysroot apt update -y
sudo chroot /sysroot apt install --no-install-recommends -y \
clang-13 lld-13
sudo chroot /sysroot apt-get update
sudo chroot /sysroot apt-get install --no-install-recommends -y \
clang-13 lld-13
# Redirect ld invocations to ld.lld-13 inside the chroot environment.
# Setting the 'LD' environment variable doesn't always work.
Expand Down Expand Up @@ -621,7 +621,7 @@ jobs:
publish-canary:
name: publish canary
runs-on: ubuntu-20.04
needs: ['build']
needs: ["build"]
if: github.repository == 'denoland/deno' &&
(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/'))
steps:
Expand Down

0 comments on commit a2c8f55

Please sign in to comment.