Update .gitlab-ci.yml file

Let try building on Debian Testing
This commit is contained in:
Alam Ed Arias 2023-10-13 16:13:31 +00:00
parent 0368a1ce8b
commit aa9d84b6d2

View file

@ -28,9 +28,11 @@ stages: # List of stages for jobs, and their order of execution
- export APT_CACHE_DIR=`pwd`/apt-cache - export APT_CACHE_DIR=`pwd`/apt-cache
- mkdir --parents --verbose $APT_CACHE_DIR/partial/ - mkdir --parents --verbose $APT_CACHE_DIR/partial/
default:
image: debian:stable-slim
.job_template: &job_build # This job runs in the build stage, which runs first. .job_template: &job_build # This job runs in the build stage, which runs first.
stage: build stage: build
image: debian:stable-slim
variables: variables:
CCACHE_MAXSIZE: "50M" CCACHE_MAXSIZE: "50M"
GIT_STRATEGY: clone GIT_STRATEGY: clone
@ -136,3 +138,18 @@ build-x86_64-w64-mingw32:
- apt-get --option dir::cache::archives="$APT_CACHE_DIR" install --no-install-recommends --yes gcc-mingw-w64-x86-64-win32 - apt-get --option dir::cache::archives="$APT_CACHE_DIR" install --no-install-recommends --yes gcc-mingw-w64-x86-64-win32
- *ccache - *ccache
- make --directory=src CCACHE=1 MINGW64=1 PREFIX=x86_64-w64-mingw32 - make --directory=src CCACHE=1 MINGW64=1 PREFIX=x86_64-w64-mingw32
build-testing:
<<: *job_build
image: debian:testing-slim
allow_failure: true
artifacts:
paths:
- "bin/lsdl2srb2*"
name: "$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-testing"
script:
- *aptcache
- apt-get --option dir::cache::archives="$APT_CACHE_DIR" install --no-install-recommends --yes gcc
- apt-get --option dir::cache::archives="$APT_CACHE_DIR" install --no-install-recommends --yes libsdl2-mixer-dev libpng-dev libcurl4-openssl-dev libgme-dev libopenmpt-dev
- *ccache
- make --directory=src CCACHE=1 NONX86=1