grafX2/.gitlab-ci.yml
Thomas Bernard 4f0149b4e9
gitlab-ci bug workaround
I have jobs that succeed even though the script is failing :

Linking ../bin/grafx2-sdl2
/usr/bin/ld: ../obj/unix-sdl2/miscfileformats.o: undefined reference to symbol 'uncompress'
//lib/x86_64-linux-gnu/libz.so.1: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
Makefile:1040: recipe for target '../bin/grafx2-sdl2' failed
make[1]: *** [../bin/grafx2-sdl2] Error 1
make[1]: Leaving directory '/builds/miniupnp/grafX2/src'
Makefile:17: recipe for target 'grafx2' failed
make: *** [grafx2] Error 2
[...]
Job succeeded

https://gitlab.com/gitlab-com/support-forum/issues/1311
2019-04-27 13:04:25 +02:00

96 lines
3.0 KiB
YAML

stages:
- build
- pages
job_linux:
stage: build
before_script:
- apt-get update -qq && apt-get install -y -qq zip
- apt-get install -y -qq libsdl1.2-dev libpng-dev libsdl-ttf2.0-dev libsdl-image1.2-dev liblua5.2-dev
- apt-get install -y -qq libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev doxygen graphviz
script:
- "make -j3 && make ziprelease || exit 1"
- "API=sdl2 make -j3 && API=sdl2 make ziprelease || exit 1"
- "make docarchive || exit 1"
after_script:
- "echo $CI_JOB_ID > LINUX_JOB_ID"
- "cd 3rdparty; make checkversions"
artifacts:
paths:
- "*.zip"
- "grafx2*.tgz"
- "VERSION"
- "LINUX_JOB_ID"
pages:
stage: pages
script:
- "NOLUA=1 API=x11 make htmldoc"
- "mkdir -p public/htmldoc && cp doc/html/* public/htmldoc/"
- "./.gitlab-page.sh"
- "cd public && tar xzf ../grafx2*doxygen.tgz"
artifacts:
paths:
- public
only:
- master
- gitlab-pages
job_win32:
stage: build
before_script:
- apt-get update -qq && apt-get install -y -qq zip dos2unix
- apt-get install -y -qq gcc-mingw-w64-i686 g++-mingw-w64-i686 mingw-w64-tools nsis
script:
- "WIN32CROSS=1 make 3rdparty -j2 || exit 1"
- "WIN32CROSS=1 make -j2 || exit 1"
- "WIN32CROSS=1 make ziprelease || exit 1"
- "WIN32CROSS=1 make win32installer || exit 1"
- "WIN32CROSS=1 API=win32 make -j2 || exit 1"
- "WIN32CROSS=1 API=win32 make ziprelease || exit 1"
- "WIN32CROSS=1 API=win32 make win32installer || exit 1"
- "WIN32CROSS=1 API=sdl2 make 3rdparty -j2 || exit 1"
- "WIN32CROSS=1 API=sdl2 make -j2 || exit 1"
- "WIN32CROSS=1 API=sdl2 make ziprelease || exit 1"
- "WIN32CROSS=1 API=sdl2 make win32installer || exit 1"
after_script:
- "echo $CI_JOB_ID > WIN32_JOB_ID"
artifacts:
paths:
- "*.zip"
- "install/grafx2*.exe"
- "WIN32_JOB_ID"
job_atari:
stage: build
before_script:
- apt-get update -qq && apt-get install -y -qq zip dos2unix
- "sh ./.install-cross-mint.sh"
script:
- "ATARICROSS=1 make 3rdparty -j2 || exit 1"
- "ATARICROSS=1 make -j2 || exit 1"
- "ATARICROSS=1 make ziprelease || exit 1"
after_script:
- "echo $CI_JOB_ID > ATARI_JOB_ID"
artifacts:
paths:
- "*.zip"
- "ATARI_JOB_ID"
job_gp2x:
stage: build
before_script:
- dpkg --add-architecture i386
- apt-get update -qq && apt-get install -y -qq zip dos2unix
- apt-get install -y -qq multiarch-support libc6:i386
- "sh ./.install-gp2x-toolchain.sh"
script:
- "NOLUA=1 GP2XCROSS=1 make -j2 grafx2 || exit 1"
- "NOLUA=1 GP2XCROSS=1 make ziprelease || exit 1"
after_script:
- "echo $CI_JOB_ID > GP2X_JOB_ID"
artifacts:
paths:
- "*.zip"
- "GP2X_JOB_ID"