这是我的问题设置与GitLab及其集成的CI服务.我现在有一个GitLab 8.1.和支持Docker的gitlabci多人赛(0.6.2).在扩展ubuntu:精确的图像以包含git和build-essentials(现在称为exact:base)后,我得到以下.gitlab-ci.yml运行:
image: precise:base
before_script:
- apt-get install --yes cmake libmatio-dev libblas-dev libsqlite3-dev libcurl4-openssl-dev
- apt-get install --yes libarchive-dev liblzma-dev
build:
script:
- mkdir build/
- cd build
- cmake -D CMAKE_BUILD_TYPE=Debug ../
- make
现在我的问题是如何在不同的图像上加入更多的工作?因为我需要检查代码是否在不同的操作系统(如Ubuntu Precise,Ubuntu Trusty,CentOS 6,CentOS 7)上进行编译(后续的工作).为了减少工作,我认为最好的方法是提供不同的Docker映像作为基础.
现在的问题是.gitlab-ci.yml怎样才能支持这个?
最佳答案
你可以define the image to use per job.
原文链接:https://www.f2er.com/docker/436383.html例如:
before_script:
- apt-get install --yes cmake libmatio-dev libblas-dev libsqlite3-dev libcurl4-openssl-dev
- apt-get install --yes libarchive-dev liblzma-dev
build:precise:
image: precise:base
script:
- mkdir build/
- cd build
- cmake -D CMAKE_BUILD_TYPE=Debug ../
- make
build:trusty:
image: trusty:base
script:
- mkdir build/
- cd build
- cmake -D CMAKE_BUILD_TYPE=Debug ../
- make