Skip to content

Commit e3e6e11

Browse files
committed
Fix the Windows GitHub Action and add GCC11
1 parent c73005e commit e3e6e11

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
compiler: [ clang, gcc, gcc-8, gcc-9, gcc-10 ]
8+
compiler: [ clang, gcc, gcc-8, gcc-9, gcc-10, gcc-11 ]
99
steps:
1010
- name: Add repository
1111
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
1212
- name: Install packages
13-
run: sudo apt install gettext gcc-8 gcc-9 gcc-10
13+
run: sudo apt install gettext gcc-8 gcc-9 gcc-10 gcc-11
1414
- uses: actions/checkout@v2
1515
- name: Autoconf
1616
run: autoreconf -i -f
@@ -51,6 +51,8 @@ jobs:
5151
MSYSTEM: MINGW64
5252
steps:
5353
- uses: actions/checkout@v2
54+
- name: Install packages
55+
run: C:\msys64\usr\bin\bash -c -l 'pacman --noconfirm -S --needed autotools gcc libiconv-devel'
5456
- name: Autoconf
5557
run: C:\msys64\usr\bin\bash -c -l 'cd "$GITHUB_WORKSPACE" && autoreconf -i -f'
5658
- name: Configure

0 commit comments

Comments
 (0)