Skip to content
Snippets Groups Projects
Commit 6ee2b4c5 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

SW-966: gitlab runner needs a container with git to build lofar-pulp in

parent ba327b00
No related branches found
No related tags found
3 merge requests!634WIP: COBALT commissioning delta,!501SW-966: build lofar-pulp in gitlab CI,!481Draft: SW-971 SW-973 SW-975: Various fixes to build LOFAR correctly.
......@@ -43,6 +43,13 @@ prepare_ci_mac_docker_image:
- docker build --build-arg BASE_VERSION=$CI_COMMIT_SHORT_SHA -t ci_mac:$CI_COMMIT_SHORT_SHA -f Docker/lofar-ci/Dockerfile_ci_mac .
interruptible: true
prepare_ci_pulp_builder_docker_image:
stage: prepare
script:
- docker build --build-arg BASE_VERSION=$CI_COMMIT_SHORT_SHA -t ci_pulp_builder:$CI_COMMIT_SHORT_SHA -f Docker/lofar-ci/Dockerfile_ci_ci_pulp_builder .
interruptible: true
#
# BUILD STAGE
#
......@@ -109,8 +116,8 @@ build_MCU_MAC:
build_pulp_docker_image:
stage: build
# use ci_base:$CI_COMMIT_SHORT_SHA as an image to build in/with
image: ci_base:$CI_COMMIT_SHORT_SHA
# use ci_pulp_builder:$CI_COMMIT_SHORT_SHA as an image to build in/with
image: ci_pulp_builder:$CI_COMMIT_SHORT_SHA
script:
- git clone https://git.astron.nl/ro/pulp-dockers
- cd pulp-dockers/lofar-pulp
......
#
# This builds an image with all tools to clone and build to pulp-docker-file from https://git.astron.nl/ro/pulp-dockers
#
# base
#
ARG BASE_VERSION=latest
FROM ci_base:$BASE_VERSION
RUN echo "Installing packages/tools to build/clone..." && \
yum install -y git docker.io
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment