From 24d5592634e3cf71dbb063008b234d0eb7f57afd Mon Sep 17 00:00:00 2001 From: Ruixiang Du Date: Fri, 23 Oct 2020 16:25:03 +0800 Subject: [PATCH] testing ci to use ubuntu:16.04 directly --- .gitlab-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c64edc0..dfc2e0e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,10 @@ ## Build and test as standard C++ package xenial-cpp-build: stage: build - image: rduweston/ubuntu-ci:16.04-min + image: ubuntu:16.04 + before_script: + - apt-get update + - apt-get install -y build-essential git cmake script: - git submodule update --init --recursive - mkdir build && cd build