File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change 13
13
matrix :
14
14
compiler : [gcc, clang]
15
15
image : [ubuntu-20.04, ubuntu-22.04]
16
+ include :
17
+ - compiler : gcc
18
+ image : ubuntu-20.04
19
+ configure_flag : ' '
20
+ - compiler : gcc
21
+ image : ubuntu-22.04
22
+ configure_flag : --enable-static --enable-all-static
23
+ - compiler : clang
24
+ image : ubuntu-20.04
25
+ configure_flag : ' '
26
+ - compiler : clang
27
+ image : ubuntu-22.04
28
+ configure_flag : --enable-static --enable-all-static
16
29
runs-on : ${{ matrix.image }}
17
30
env :
18
31
CC : ${{ matrix.compiler }}
40
53
--disable-maintainer-mode \
41
54
--disable-valgrind \
42
55
--with-oniguruma=builtin \
43
- --enable-static \
44
- --enable-all-static \
56
+ ${{ matrix.configure_flag }} \
45
57
YACC="$(which bison) -y"
46
58
make
47
59
- name : Test
You can’t perform that action at this time.
0 commit comments