From ad85b549b3d038afa3274e5fd4564a64a21e8f38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Tam=C3=A1s?= Date: Wed, 16 Oct 2019 01:03:50 +0200 Subject: [PATCH 1/3] try runner --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index eca2688..c6a0395 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ # use the official gcc image, based on debian # can use verions as well, like gcc:5.2 # see https://hub.docker.com/_/gcc/ -image: gcc +image: ubuntu_clang build: stage: build From fdcee8d3987706a49421b4a73fe3a6d28aebe174 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Tam=C3=A1s?= Date: Wed, 16 Oct 2019 01:31:18 +0200 Subject: [PATCH 2/3] tag the jobs --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c6a0395..3e6cc27 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,6 +5,9 @@ image: ubuntu_clang build: stage: build + tags: + - linux + - clang # instead of calling g++ directly you can also use some build toolkit like make # install the necessary build tools when needed before_script: @@ -22,6 +25,8 @@ build: # run tests using the binary built before test: stage: test + tags: + - linux #before_script: # - apt update && apt -y install libpolyclipping22 libnlopt-cxx0 libnlopt0 script: From 1338e9456443832c0ae4c1ccbde9cd63331dcf72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Tam=C3=A1s?= Date: Wed, 16 Oct 2019 01:55:34 +0200 Subject: [PATCH 3/3] use pushed image --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3e6cc27..6f93d1d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ # use the official gcc image, based on debian # can use verions as well, like gcc:5.2 # see https://hub.docker.com/_/gcc/ -image: ubuntu_clang +image: meszarosq/phoenix:latest build: stage: build