diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-05-28 06:21:46 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-05-28 06:21:46 +0200 |
commit | 035cdbb7e798c23c4b5dc367eedd38c78934c158 (patch) | |
tree | b9b106e41567caaf2dc9fda8556b596860743c9a | |
parent | cf625b99bc57ac1a6aee2aae3e28fd1462f3b16f (diff) |
gitlab-ci update
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r-- | .gitlab-ci.yml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2e6b0f9..94ef12a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,12 +12,13 @@ before_script: - test ! -r /etc/arch-release || pacman -Sy archlinux-keyring --noconfirm - test ! -r /etc/arch-release || pacman -Syu --noconfirm - test ! -r /etc/arch-release || pacman -S --noconfirm binutils gcc base-devel git + - mkdir -p ./deploy/gcc ./deploy/i686-w64-mingw32-winpcap ./deploy/i686-w64-mingw32-npcap ./deploy/clang ./deploy/android28-clang build: script: - autoreconf -fi - ./configure --enable-option-checking=fatal --prefix=/ - - make install CFLAGS='-Werror' DESTDIR="$(realpath ./deploy)" V=s + - make install CFLAGS='-Werror' DESTDIR="$(realpath ./deploy/gcc)" V=s stage: build artifacts: paths: @@ -48,7 +49,9 @@ build-mingw: script: - autoreconf -fi - ./configure --enable-option-checking=fatal --prefix=/ --host=i686-w64-mingw32 - - make install CFLAGS='-Werror' DESTDIR="$(realpath ./deploy)" V=s + - make install CFLAGS='-Werror' DESTDIR="$(realpath ./deploy/i686-w64-mingw32-winpcap)" V=s + - ./configure --enable-option-checking=fatal --prefix=/ --host=i686-w64-mingw32 --enable-npcap + - make install CFLAGS='-Werror' DESTDIR="$(realpath ./deploy/i686-w64-mingw32-npcap)" V=s stage: build artifacts: paths: @@ -60,7 +63,7 @@ build-clang: script: - autoreconf -fi - CC=clang ./configure --enable-option-checking=fatal --prefix=/ - - make install CFLAGS='-Werror -Wno-error=for-loop-analysis' DESTDIR="$(realpath ./deploy)" V=s + - make install CFLAGS='-Werror -Wno-error=for-loop-analysis' DESTDIR="$(realpath ./deploy/clang)" V=s stage: build artifacts: paths: @@ -80,7 +83,7 @@ build-android: - cd .. - autoreconf -fi - CC=aarch64-linux-android28-clang PATH="${PATH}:$(realpath ./vendor/android-ndk-r19/toolchains/llvm/prebuilt/linux-x86_64/bin)" ./configure --enable-option-checking=fatal --host=aarch64-linux-android - - PATH="${PATH}:$(realpath ./vendor/android-ndk-r19/toolchains/llvm/prebuilt/linux-x86_64/bin)" make install CFLAGS='-Werror -Wno-error=for-loop-analysis' DESTDIR="$(realpath ./deploy)" V=s + - PATH="${PATH}:$(realpath ./vendor/android-ndk-r19/toolchains/llvm/prebuilt/linux-x86_64/bin)" make install CFLAGS='-Werror -Wno-error=for-loop-analysis' DESTDIR="$(realpath ./deploy/android28-clang)" V=s stage: build artifacts: paths: |