preprocessor/.gitlab-ci.yml

120 lines
3.9 KiB
YAML
Raw Normal View History

variables:
TERM: linux
MINGW32_BOOST_VERSION: 1.75.0-2
MINGW64_BOOST_VERSION: 1.75.0-2
WGET_OPTIONS: '--no-verbose --no-use-server-timestamps --retry-connrefused --retry-on-host-error'
JULIA_VERSION: 1.6.0
stages:
- build
- aggregate
- deploy
build_linux_32:
stage: build
2018-09-11 15:54:59 +02:00
script:
- autoreconf -si
2019-10-17 15:45:53 +02:00
- './configure LDFLAGS="-m32 -static -static-libgcc -static-libstdc++" CXXFLAGS=-m32'
2018-09-11 19:09:45 +02:00
- make -j$(nproc)
- strip src/dynare-preprocessor
- mkdir -p $CI_COMMIT_SHA/linux-i686
- tar -caf $CI_COMMIT_SHA/linux-i686/dynare-preprocessor.tar.gz -C src dynare-preprocessor
artifacts:
paths:
- $CI_COMMIT_SHA/linux-i686/*
build_linux_64:
stage: build
script:
- autoreconf -si
2019-10-17 15:45:53 +02:00
- './configure LDFLAGS="-static -static-libgcc -static-libstdc++"'
- make -j$(nproc)
- strip src/dynare-preprocessor
- mkdir -p $CI_COMMIT_SHA/linux-x86_64
- tar -caf $CI_COMMIT_SHA/linux-x86_64/dynare-preprocessor.tar.gz -C src dynare-preprocessor
artifacts:
paths:
- $CI_COMMIT_SHA/linux-x86_64/*
build_windows_32:
stage: build
script:
- mkdir -p ~/tarballs
- '[[ -f ~/tarballs/mingw-w64-i686-boost-$MINGW32_BOOST_VERSION-any.pkg.tar.zst ]] || wget $WGET_OPTIONS -P ~/tarballs http://repo.msys2.org/mingw/i686/mingw-w64-i686-boost-$MINGW32_BOOST_VERSION-any.pkg.tar.zst'
- mkdir -p deps
- tar xf ~/tarballs/mingw-w64-i686-boost-$MINGW32_BOOST_VERSION-any.pkg.tar.zst --directory deps
- autoreconf -si
- './configure --host=i686-w64-mingw32 --with-boost=$(pwd)/deps/mingw32/include LDFLAGS="-static -static-libgcc -static-libstdc++"'
- make -j$(nproc)
- i686-w64-mingw32-strip src/dynare-preprocessor.exe
- mkdir -p $CI_COMMIT_SHA/windows-i686
- tar -caf $CI_COMMIT_SHA/windows-i686/dynare-preprocessor.tar.gz -C src dynare-preprocessor.exe
artifacts:
paths:
- $CI_COMMIT_SHA/windows-i686/*
build_windows_64:
stage: build
script:
- mkdir -p ~/tarballs
- '[[ -f ~/tarballs/mingw-w64-x86_64-boost-$MINGW64_BOOST_VERSION-any.pkg.tar.zst ]] || wget $WGET_OPTIONS -P ~/tarballs http://repo.msys2.org/mingw/x86_64/mingw-w64-x86_64-boost-$MINGW64_BOOST_VERSION-any.pkg.tar.zst'
- mkdir -p deps
- tar xf ~/tarballs/mingw-w64-x86_64-boost-$MINGW64_BOOST_VERSION-any.pkg.tar.zst --directory deps
- autoreconf -si
2019-10-17 15:45:53 +02:00
- './configure --host=x86_64-w64-mingw32 --with-boost=$(pwd)/deps/mingw64/include LDFLAGS="-static -static-libgcc -static-libstdc++"'
- make -j$(nproc)
- x86_64-w64-mingw32-strip src/dynare-preprocessor.exe
- mkdir -p $CI_COMMIT_SHA/windows-x86_64
- tar -caf $CI_COMMIT_SHA/windows-x86_64/dynare-preprocessor.tar.gz -C src dynare-preprocessor.exe
artifacts:
paths:
- $CI_COMMIT_SHA/windows-x86_64/*
build_macOS:
stage: build
tags:
- macOS
script:
- autoreconf -si
- './configure CXX=g++-10 CXXFLAGS=-static-libgcc LEX=/usr/local/opt/flex/bin/flex YACC=/usr/local/opt/bison/bin/bison'
- make -j$(nproc)
- strip src/dynare-preprocessor
- mkdir -p $CI_COMMIT_SHA/macos-x86_64
- tar -caf $CI_COMMIT_SHA/macos-x86_64/dynare-preprocessor.tar.gz -C src dynare-preprocessor
artifacts:
paths:
- $CI_COMMIT_SHA/macos-x86_64/*
aggregate_julia:
stage: aggregate
dependencies:
- build_linux_32
- build_linux_64
- build_windows_32
- build_windows_64
- build_macOS
script:
- PATH=$PATH:/usr/local/julia/$JULIA_VERSION/bin scripts/create-julia-artifacts-toml $CI_COMMIT_SHA https://www.dynare.org/preprocessor
artifacts:
paths:
- $CI_COMMIT_SHA/Artifacts.toml
deploy_julia:
stage: deploy
dependencies:
- build_linux_32
- build_linux_64
- build_windows_32
- build_windows_64
- build_macOS
- aggregate_julia
tags:
- restricted
rules:
- if: '$CI_PROJECT_NAMESPACE == "Dynare" && $CI_COMMIT_REF_NAME == "master"'
when: manual
allow_failure: true
- when: never
script:
- cp -R $CI_COMMIT_SHA /srv/www.dynare.org/preprocessor/