Add build test for MinGW
This commit is contained in:
parent
f6810ede60
commit
10e13fc748
|
@ -7,6 +7,7 @@ before_script:
|
|||
- dnf -y upgrade --disablerepo=rawhide-modular --nogpgcheck fedora-repos fedora-repos-rawhide
|
||||
- dnf -y upgrade --disablerepo=rawhide-modular
|
||||
- dnf -y install --disablerepo=rawhide-modular --allowerasing --skip-broken @buildsys-build autoconf automake libtool gettext gettext-devel gperf expat-devel freetype-devel libuuid-devel json-c-devel git docbook-utils docbook-utils-pdf bubblewrap
|
||||
- dnf -y install --disablerepo=rawhide-modular --allowerasing --skip-broken mingw64-gettext mingw64-freetype mingw64-expat
|
||||
|
||||
shared-build:
|
||||
stage: build
|
||||
|
@ -53,3 +54,24 @@ static-build:
|
|||
- build-*/*.log
|
||||
- build-*/test/*.log
|
||||
- build-*/test/*.trs
|
||||
mingw-build:
|
||||
stage: build
|
||||
script:
|
||||
- export BUILD_ID="fontconfig-$CI_JOB_NAME_$CI_COMMIT_SHA-$CI_JOB_ID"
|
||||
- export PREFIX="$(pwd)/prefix-$BUILD_ID"
|
||||
- export BUILDDIR="$(pwd)/build-$BUILD_ID"
|
||||
- export MAKEFLAGS="-j4"
|
||||
- mkdir "$BUILDDIR"
|
||||
- cd "$BUILDDIR"
|
||||
- eval `rpm --eval %{mingw64_env}`
|
||||
- ../autogen.sh --prefix="$PREFIX" --disable-shared --enable-static
|
||||
- make
|
||||
- make check
|
||||
artifacts:
|
||||
name: fontconfig-$CI_COMMIT_SHA-$CI_JOB_ID
|
||||
when: always
|
||||
paths:
|
||||
- build-*/*.log
|
||||
- build-*/test/*.log
|
||||
- build-*/test/*.trs
|
||||
|
||||
|
|
Loading…
Reference in New Issue