Skip to content

Commit

Permalink
CI: updates for mstorsjo/llvm-mingw moving to 20.04
Browse files Browse the repository at this point in the history
add-apt-repository is no longer included by default and
needs to be installed

also disable fail-fast while at it, we care about all jobs
  • Loading branch information
lazka authored and naveen521kk committed Jun 23, 2023
1 parent 342d645 commit 15923c9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ jobs:
container:
image: mstorsjo/llvm-mingw:latest
strategy:
fail-fast: false
matrix:
arch: ['x86_64', 'i686', 'aarch64', 'armv7']
steps:
Expand All @@ -233,6 +234,8 @@ jobs:
- name: Install deps
run: |
export DEBIAN_FRONTEND=noninteractive
apt-get update -qq
apt-get install -qqy software-properties-common
add-apt-repository --yes ppa:deadsnakes/ppa
apt-get update -qq
apt-get install -qqy autoconf-archive python3.10-dev python3.10
Expand Down Expand Up @@ -274,6 +277,7 @@ jobs:
needs: [cross-llvm-mingw]
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
arch: ['x86_64', 'i686']
steps:
Expand Down

0 comments on commit 15923c9

Please sign in to comment.