Loading .gitlab-ci.yml +119 −0 Original line number Diff line number Diff line Loading @@ -289,6 +289,125 @@ build:clang_4.0:libfabric_1.7.1:mercury_1.0.1: # - triggers # - schedules ### Clang 5.0 with libfabric1.7.1, mercury 1.0.1 build:clang_5.0:libfabric_1.7.1:mercury_1.0.1: image: bscstorage/norns-build-deps:clang5.0-libfabric1.7.1-mercury1.0.1 stage: build script: - | ( set -Eeuo pipefail set -x ./bootstrap.sh mkdir build && cd build ../configure --enable-tests make -j$(nproc) cd tests make -j$(nproc) core make -j$(nproc) api make -j$(nproc) api_interactive ) # only: # - tags # - triggers # - schedules ### Clang 6.0 with libfabric1.7.1, mercury 1.0.1 build:clang_6.0:libfabric_1.7.1:mercury_1.0.1: image: bscstorage/norns-build-deps:clang6.0-libfabric1.7.1-mercury1.0.1 stage: build script: - | ( set -Eeuo pipefail set -x ./bootstrap.sh mkdir build && cd build ../configure --enable-tests make -j$(nproc) cd tests make -j$(nproc) core make -j$(nproc) api make -j$(nproc) api_interactive ) # only: # - tags # - triggers # - schedules ### Clang 7.1 with libfabric1.7.1, mercury 1.0.1 build:clang_7.1:libfabric_1.7.1:mercury_1.0.1: image: bscstorage/norns-build-deps:clang7.1-libfabric1.7.1-mercury1.0.1 stage: build script: - | ( set -Eeuo pipefail set -x ./bootstrap.sh mkdir build && cd build ../configure --enable-tests make -j$(nproc) cd tests make -j$(nproc) core make -j$(nproc) api make -j$(nproc) api_interactive ) # only: # - tags # - triggers # - schedules ### Clang 8.0 with libfabric1.7.1, mercury 1.0.1 build:clang_8.0:libfabric_1.7.1:mercury_1.0.1: image: bscstorage/norns-build-deps:clang8.0-libfabric1.7.1-mercury1.0.1 stage: build script: - | ( set -Eeuo pipefail set -x ./bootstrap.sh mkdir build && cd build ../configure --enable-tests make -j$(nproc) cd tests make -j$(nproc) core make -j$(nproc) api make -j$(nproc) api_interactive ) # only: # - tags # - triggers # - schedules ### Clang 9.0 with libfabric1.7.1, mercury 1.0.1 build:clang_9.0:libfabric_1.7.1:mercury_1.0.1: image: bscstorage/norns-build-deps:clang9.0-libfabric1.7.1-mercury1.0.1 stage: build script: - | ( set -Eeuo pipefail set -x ./bootstrap.sh mkdir build && cd build ../configure --enable-tests make -j$(nproc) cd tests make -j$(nproc) core make -j$(nproc) api make -j$(nproc) api_interactive ) # only: # - tags # - triggers # - schedules ################################################################################ # Test jobs ################################################################################ Loading Loading
.gitlab-ci.yml +119 −0 Original line number Diff line number Diff line Loading @@ -289,6 +289,125 @@ build:clang_4.0:libfabric_1.7.1:mercury_1.0.1: # - triggers # - schedules ### Clang 5.0 with libfabric1.7.1, mercury 1.0.1 build:clang_5.0:libfabric_1.7.1:mercury_1.0.1: image: bscstorage/norns-build-deps:clang5.0-libfabric1.7.1-mercury1.0.1 stage: build script: - | ( set -Eeuo pipefail set -x ./bootstrap.sh mkdir build && cd build ../configure --enable-tests make -j$(nproc) cd tests make -j$(nproc) core make -j$(nproc) api make -j$(nproc) api_interactive ) # only: # - tags # - triggers # - schedules ### Clang 6.0 with libfabric1.7.1, mercury 1.0.1 build:clang_6.0:libfabric_1.7.1:mercury_1.0.1: image: bscstorage/norns-build-deps:clang6.0-libfabric1.7.1-mercury1.0.1 stage: build script: - | ( set -Eeuo pipefail set -x ./bootstrap.sh mkdir build && cd build ../configure --enable-tests make -j$(nproc) cd tests make -j$(nproc) core make -j$(nproc) api make -j$(nproc) api_interactive ) # only: # - tags # - triggers # - schedules ### Clang 7.1 with libfabric1.7.1, mercury 1.0.1 build:clang_7.1:libfabric_1.7.1:mercury_1.0.1: image: bscstorage/norns-build-deps:clang7.1-libfabric1.7.1-mercury1.0.1 stage: build script: - | ( set -Eeuo pipefail set -x ./bootstrap.sh mkdir build && cd build ../configure --enable-tests make -j$(nproc) cd tests make -j$(nproc) core make -j$(nproc) api make -j$(nproc) api_interactive ) # only: # - tags # - triggers # - schedules ### Clang 8.0 with libfabric1.7.1, mercury 1.0.1 build:clang_8.0:libfabric_1.7.1:mercury_1.0.1: image: bscstorage/norns-build-deps:clang8.0-libfabric1.7.1-mercury1.0.1 stage: build script: - | ( set -Eeuo pipefail set -x ./bootstrap.sh mkdir build && cd build ../configure --enable-tests make -j$(nproc) cd tests make -j$(nproc) core make -j$(nproc) api make -j$(nproc) api_interactive ) # only: # - tags # - triggers # - schedules ### Clang 9.0 with libfabric1.7.1, mercury 1.0.1 build:clang_9.0:libfabric_1.7.1:mercury_1.0.1: image: bscstorage/norns-build-deps:clang9.0-libfabric1.7.1-mercury1.0.1 stage: build script: - | ( set -Eeuo pipefail set -x ./bootstrap.sh mkdir build && cd build ../configure --enable-tests make -j$(nproc) cd tests make -j$(nproc) core make -j$(nproc) api make -j$(nproc) api_interactive ) # only: # - tags # - triggers # - schedules ################################################################################ # Test jobs ################################################################################ Loading