Skip to content
Snippets Groups Projects
Commit c161fd3d authored by Jan Trávníček's avatar Jan Trávníček
Browse files

upgrade to alpine 3.7

parent 8baaeb53
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -5,18 +5,18 @@ ...@@ -5,18 +5,18 @@
# files implicitly passed between jobs or stages, only artifacts and maybe # files implicitly passed between jobs or stages, only artifacts and maybe
# cache (depends on configuration). # cache (depends on configuration).
   
image: alpine:3.6 image: alpine:3.7
   
before_script: before_script:
- case "$CI_BUILD_NAME" in - case "$CI_BUILD_NAME" in
*-clang) export CXX=clang++ EXTRA_PKGS="$EXTRA_PKGS clang llvm4-dev";; *-clang) export CXX=clang++ EXTRA_PKGS="$EXTRA_PKGS clang llvm5-dev";;
*) export CXX=g++;; *) export CXX=g++;;
esac esac
- export JOBS=$(grep -c processor /proc/cpuinfo) - export JOBS=$(grep -c processor /proc/cpuinfo)
- apk add --no-cache build-base bash libexecinfo-dev - apk add --no-cache build-base bash libexecinfo-dev
cppunit-dev libxml2-dev tclap-dev readline-dev $EXTRA_PKGS cppunit-dev libxml2-dev tclap-dev readline-dev $EXTRA_PKGS
- case "$CI_BUILD_NAME" in - case "$CI_BUILD_NAME" in
*-clang) ln -s /usr/lib/llvm4/lib/LLVMgold.so /usr/lib/LLVMgold.so;; *-clang) ln -s /usr/lib/llvm5/lib/LLVMgold.so /usr/lib/LLVMgold.so;;
*) ;; *) ;;
esac esac
- echo USE_RAMDISK=0 >> build.conf - echo USE_RAMDISK=0 >> build.conf
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment