ci: use ubuntu:18.04 and 20.04

This commit is contained in:
Ruixiang Du
2020-10-23 16:28:38 +08:00
parent 24d5592634
commit a6416fd314

View File

@@ -13,7 +13,10 @@ xenial-cpp-build:
bionic-cpp-build: bionic-cpp-build:
stage: build stage: build
image: rduweston/ubuntu-ci:18.04-min image: ubuntu:18.04
before_script:
- apt-get update
- apt-get install -y build-essential git cmake
script: script:
- git submodule update --init --recursive - git submodule update --init --recursive
- mkdir build && cd build - mkdir build && cd build
@@ -22,7 +25,10 @@ bionic-cpp-build:
focal-cpp-build: focal-cpp-build:
stage: build stage: build
image: rduweston/ubuntu-ci:20.04-min image: ubuntu:20.04
before_script:
- apt-get update
- apt-get install -y build-essential git cmake
script: script:
- git submodule update --init --recursive - git submodule update --init --recursive
- mkdir build && cd build - mkdir build && cd build