mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
Update .gitlab-ci.yml file
Set PKG_CONFIG_PATH for targeted archs
This commit is contained in:
parent
50c32451fb
commit
83628d6049
1 changed files with 5 additions and 3 deletions
|
@ -52,7 +52,7 @@ stages: # List of stages for jobs, and their order of execution
|
||||||
- dpkg --add-architecture amd64
|
- dpkg --add-architecture amd64
|
||||||
- apt-get update
|
- apt-get update
|
||||||
- *aptcache
|
- *aptcache
|
||||||
- apt-get --option dir::cache::archives="$APT_CACHE_DIR" install --no-install-recommends --yes make git ccache
|
- apt-get --option dir::cache::archives="$APT_CACHE_DIR" install --no-install-recommends --yes make git ccache gcc
|
||||||
- *ccache
|
- *ccache
|
||||||
- ccache --zero-stats || true
|
- ccache --zero-stats || true
|
||||||
- ccache --show-stats || true
|
- ccache --show-stats || true
|
||||||
|
@ -70,9 +70,10 @@ build-i686-linux-gnu:
|
||||||
name: "$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-i686"
|
name: "$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-i686"
|
||||||
script:
|
script:
|
||||||
- *aptcache
|
- *aptcache
|
||||||
- apt-get --option dir::cache::archives="$APT_CACHE_DIR" install --no-install-recommends --yes gcc-i686-linux-gnu
|
- apt-get --option dir::cache::archives="$APT_CACHE_DIR" install --no-install-recommends --yes gcc-i686-linux-gnu || true
|
||||||
- apt-get --option dir::cache::archives="$APT_CACHE_DIR" install --no-install-recommends --yes libsdl2-mixer-dev:i386 libpng-dev:i386 libcurl4-openssl-dev:i386 libgme-dev:i386 libopenmpt-dev:i386
|
- apt-get --option dir::cache::archives="$APT_CACHE_DIR" install --no-install-recommends --yes libsdl2-mixer-dev:i386 libpng-dev:i386 libcurl4-openssl-dev:i386 libgme-dev:i386 libopenmpt-dev:i386
|
||||||
- export CC="i686-linux-gnu-gcc"
|
- export CC="i686-linux-gnu-gcc"
|
||||||
|
- export PKG_CONFIG_PATH=/usr/lib/i386-linux-gnu/pkgconfig
|
||||||
- *ccache
|
- *ccache
|
||||||
- make --directory=src CCACHE=1 LINUX=1
|
- make --directory=src CCACHE=1 LINUX=1
|
||||||
|
|
||||||
|
@ -84,9 +85,10 @@ build-x86_64-linux-gnu:
|
||||||
name: "$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-x86-64"
|
name: "$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-x86-64"
|
||||||
script:
|
script:
|
||||||
- *aptcache
|
- *aptcache
|
||||||
- apt-get --option dir::cache::archives="$APT_CACHE_DIR" install --no-install-recommends --yes gcc-x86-64-linux-gnu
|
- apt-get --option dir::cache::archives="$APT_CACHE_DIR" install --no-install-recommends --yes gcc-x86-64-linux-gnu || true
|
||||||
- apt-get --option dir::cache::archives="$APT_CACHE_DIR" install --no-install-recommends --yes libsdl2-mixer-dev:amd64 libpng-dev:amd64 libcurl4-openssl-dev:amd64 libgme-dev:amd64 libopenmpt-dev:amd64
|
- apt-get --option dir::cache::archives="$APT_CACHE_DIR" install --no-install-recommends --yes libsdl2-mixer-dev:amd64 libpng-dev:amd64 libcurl4-openssl-dev:amd64 libgme-dev:amd64 libopenmpt-dev:amd64
|
||||||
- export CC="x86_64-linux-gnu-gcc"
|
- export CC="x86_64-linux-gnu-gcc"
|
||||||
|
- export PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig
|
||||||
- *ccache
|
- *ccache
|
||||||
- make --directory=src CCACHE=1 LINUX64=1
|
- make --directory=src CCACHE=1 LINUX64=1
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue