diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-01-26 13:47:22 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-01-26 14:30:35 +0100 |
commit | 8a7a9a83ae7b15755cf7c459872670abca4cbd14 (patch) | |
tree | 7a27650e557086dab7a2566deb287e20786fc76b | |
parent | 4352aeee488889f47697b884398e24c68082123b (diff) |
gitlab-ci: fixed wrong pkg name
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r-- | .gitlab-ci.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d5c36cd..ed1972c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,7 +8,7 @@ build: - apt-get -qq update - apt-get install -y git debhelper fakeroot - apt-get install -y libpcap-dev libselinux1-dev - - apt-get install -y binutils-mingw-w64-i686 gcc-mingw-w64 mingw-w64-i686-dev mingw-w64-common clang-5.0 + - apt-get install -y binutils-mingw-w64-i686 gcc-mingw-w64 mingw-w64-i686-dev mingw-w64-common clang - apt-get install -y autoconf automake dh-autoreconf - mkdir -p ../bin - ./autogen.sh @@ -22,8 +22,7 @@ build: - cp -v ../*.deb ../bin/* ./bin/ - cp -v ./bin/ptunnel-ng ./bin/ptunnel-ng-dbgsym && strip -s ./bin/ptunnel-ng - cp -v ./bin/ptunnel-ng.exe ./bin/ptunnel-ng-dbgsym.exe && i686-w64-mingw32-strip -s ./bin/ptunnel-ng.exe - - git clean -df . && export CC=clang-5.0 && autoreconf -fi && ./configure && make - CFLAGS='-Werror -Wno-error=for-loop-analysis' V=s + - export CC=clang && ./configure && make clean && make CFLAGS='-Werror -Wno-error=for-loop-analysis' V=s artifacts: paths: - bin/ |