From 4359680f9df92475c439f16a163bf5a9b37813b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Mon, 24 Oct 2016 11:20:35 +0200 Subject: Fix test encoding by setting LANG and LC_ALL to C.UTF-8 --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 484cdc0..29124eb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,8 @@ before_script: - uname -a - whoami + - export LC_ALL=C.UTF-8 + - export LANG=C.UTF-8 - echo $LANG - g++ --version - clang++ --version -- cgit v1.2.3 From b141f3ddeeb4d3cb66eca0a919595c3c661af2b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Mon, 24 Oct 2016 11:33:06 +0200 Subject: Explicitely use the docker runner on some builds --- .gitlab-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 29124eb..b975134 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,6 +26,8 @@ variables: - cmake .. -DCMAKE_CXX_COMPILER=${COMPILER} -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ${BOTAN} ${CARES} ${SYSTEMD} ${LIBIDN} ${LITESQL} - make biboumi -j$(nproc) - make check -j$(nproc) + tags: + - docker image: biboumi-test-fedora:latest @@ -70,6 +72,9 @@ build:6: build:rpm: stage: build + image: biboumi-test-fedora:latest + tags: + - docker script: - cmake .. -DCMAKE_CXX_COMPILER=${COMPILER} -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ${BOTAN} ${CARES} ${SYSTEMD} ${LIBIDN} ${LITESQL} - make rpm -j$(nproc) @@ -100,11 +105,15 @@ build:rpm: test:debian: stage: test image: biboumi-test-debian:latest + tags: + - docker <<: *basic_test test:fedora: stage: test image: biboumi-test-fedora:latest + tags: + - docker <<: *basic_test test:openbsd: -- cgit v1.2.3