Skip to content

Commit

Permalink
Remove Ubuntu 18.04 entirely
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasff committed Oct 5, 2024
1 parent 74ba034 commit b113036
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ jobs:
fail-fast: false # don't cancel other jobs in the matrix if one fails
matrix:
include:
- runner: ubuntu-20.04
container: ubuntu:18.04
os_name: ubuntu-18.04
- runner: ubuntu-20.04
container: ubuntu:20.04
os_name: ubuntu-20.04
Expand Down Expand Up @@ -39,13 +36,6 @@ jobs:
image: ${{ matrix.container }}

steps:
- name: Node fix for Ubuntu 18.04
if: matrix.os_name == 'ubuntu-18.04'
run: |
echo ':warning: Forcing `node` v16 to be used on Ubuntu 18.04' >> $GITHUB_STEP_SUMMARY
echo 'ACTIONS_RUNNER_FORCED_INTERNAL_NODE_VERSION=node16' >> $GITHUB_ENV
echo 'ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION=node16' >> $GITHUB_ENV
- uses: actions/checkout@v4

- name: Fetch package lists and install dependencies (Ubuntu)
Expand Down Expand Up @@ -79,12 +69,6 @@ jobs:
if: matrix.os_name == 'ubuntu-23.04'
run: rm -f /usr/lib/python$(python3 --version | cut -d ' ' -f 2 | cut -d '.' -f 1,2)/EXTERNALLY-MANAGED

- name: Update Python3 on Ubuntu 18.04
if: matrix.os_name == 'ubuntu-18.04'
run: |
DEBIAN_FRONTEND=noninteractive apt-get -y install python3.8
update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 1
- name: Build
run: make

Expand Down

0 comments on commit b113036

Please sign in to comment.