Skip to content

Commit

Permalink
Disable fail-fast, fix Python in Ubuntu 18.04
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasff committed Nov 3, 2023
1 parent e419b20 commit 7a09bb9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
build-and-test-ubuntu-matrix:
runs-on: ubuntu-20.04
strategy:
fail-fast: false # don't cancel other jobs in the matrix if one fails
matrix:
include:
- container: ubuntu:18.04
Expand Down Expand Up @@ -75,6 +76,12 @@ jobs:
if: matrix.container == '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.container == '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
- name: Run Webdis and test
Expand Down

0 comments on commit 7a09bb9

Please sign in to comment.