Let's try libSDL2main.a as the .dll.a doesn't exist #63
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux build | |
on: [push] | |
jobs: | |
linux-build: | |
name: Linux build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get update | |
- run: sudo apt-get install pkg-config libsdl2-dev libfreetype6-dev zlib1g-dev libpng-dev devscripts | |
- run: wget http://softpres.org/_media/files:ipflib42_linux-x86_64.tar.gz -O /tmp/ipflib42_linux-x86_64.tar.gz | |
- run: tar -xf /tmp/ipflib42_linux-x86_64.tar.gz 2>&1 >/dev/null | |
- run: sudo cp -r x86_64-linux-gnu-capsimage/include/caps /usr/include | |
- run: make -j 3 WITH_IPF=true | |
- run: make -j 3 WITH_IPF=true unit_test | |
- run: make -j 3 e2e_test | |
- run: make -j 3 clean | |
- run: make -j 3 debug CFLAGS=-Wno-literal-suffix | |
# Disabled for now on Linux: there are too many lint errors at the moment ... | |
#- run: make -j 3 clang-tidy | |
# Disabled for now as this is failing for unknown reasons. | |
#- run: make -j 3 deb_pkg VERSION=99.99.0 REVISION=1 | |
- run: make -j 3 clean | |
- run: make -j 3 APP_PATH=/tmp/cap32 DESTDIR=/tmp/cap32 install | |
- run: test/integrated/test_make_install.sh /tmp/cap32 |