test more variations
This commit is contained in:
parent
1183b16888
commit
a79bbf5a38
1 changed files with 7 additions and 3 deletions
10
.github/workflows/c-cpp.yml
vendored
10
.github/workflows/c-cpp.yml
vendored
|
@ -17,7 +17,11 @@ jobs:
|
||||||
run: sudo apt-get -y update
|
run: sudo apt-get -y update
|
||||||
- name: install deps
|
- name: install deps
|
||||||
run: sudo apt install pkgconf libreadline-dev libsdl1.2-compat-dev libsdl-gfx1.2-dev libx11-dev libxext-dev liblua5.4-dev
|
run: sudo apt install pkgconf libreadline-dev libsdl1.2-compat-dev libsdl-gfx1.2-dev libx11-dev libxext-dev liblua5.4-dev
|
||||||
- name: make x11
|
- name: make standard
|
||||||
run: make clean-all && make GUI=x11
|
|
||||||
- name: make
|
|
||||||
run: make clean-all && make
|
run: make clean-all && make
|
||||||
|
- name: make without sdl
|
||||||
|
run: make clean-all && make WITH_SDL=no
|
||||||
|
- name: make without x11
|
||||||
|
run: make clean-all && make WITH_X11=no
|
||||||
|
- name: make with neither x11 nor sdl
|
||||||
|
run: make clean-all && make WITH_X11=no WITH_SDL=no
|
||||||
|
|
Loading…
Reference in a new issue