Skip to content

Commit

Permalink
Disable static build for ubuntu-20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
owenthereal committed Jul 1, 2023
1 parent 4a4ba88 commit 6520242
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,19 @@ jobs:
matrix:
compiler: [gcc, clang]
image: [ubuntu-20.04, ubuntu-22.04]
include:
- compiler: gcc
image: ubuntu-20.04
configure_flag: ''
- compiler: gcc
image: ubuntu-22.04
configure_flag: --enable-static --enable-all-static
- compiler: clang
image: ubuntu-20.04
configure_flag: ''
- compiler: clang
image: ubuntu-22.04
configure_flag: --enable-static --enable-all-static
runs-on: ${{ matrix.image }}
env:
CC: ${{ matrix.compiler }}
Expand Down Expand Up @@ -40,8 +53,7 @@ jobs:
--disable-maintainer-mode \
--disable-valgrind \
--with-oniguruma=builtin \
--enable-static \
--enable-all-static \
${{ matrix.configure_flag }} \
YACC="$(which bison) -y"
make
- name: Test
Expand Down

0 comments on commit 6520242

Please sign in to comment.