Skip to content
Snippets Groups Projects
Verified Commit 28debdfb authored by Maik Nijhuis's avatar Maik Nijhuis
Browse files

Remove extra build that stores a docker image on GitLab

parent 1f04ff29
No related branches found
No related tags found
1 merge request!703Remove extra build that stores a docker image on GitLab
Pipeline #34984 passed
...@@ -153,17 +153,6 @@ build-2204: ...@@ -153,17 +153,6 @@ build-2204:
paths: paths:
- build - build
build-release-2204:
# .prepare should be last, since it overwrites "image:".
extends: [".needs-base-2204",".prepare"]
stage: build
variables:
DOCKER_IMAGE: ${CI_REGISTRY_IMAGE}/dp3:${CI_COMMIT_SHORT_SHA}
DOCKER_FILE: ./docker/ubuntu_20_04_dp3
DOCKER_BUILD_ARG: --build-arg BASE_TAG=$BASE_IMAGE_2204
rules: # This job should always overwrite the rules: from .prepare!
- if: '$CI_COMMIT_BRANCH == "master"'
build-doc-2204: build-doc-2204:
stage: build stage: build
extends: [".failable",".needs-base-2204"] extends: [".failable",".needs-base-2204"]
......
...@@ -6,7 +6,7 @@ The DP3 documentation can be found at: https://dp3.readthedocs.org ...@@ -6,7 +6,7 @@ The DP3 documentation can be found at: https://dp3.readthedocs.org
This repository is a continuation of the one at svn.astron.nl/LOFAR. In particular, it has branched off at LOFAR Release 3.2 (Sept 2018). The version of DP3 that is in the ASTRON repository is no longer maintained. This repository is a continuation of the one at svn.astron.nl/LOFAR. In particular, it has branched off at LOFAR Release 3.2 (Sept 2018). The version of DP3 that is in the ASTRON repository is no longer maintained.
## Installation ## Installation
Some non-standard dependencies of this project are: armadillo, boost, boost-python, casacore, hdf5, aoflagger, and EveryBeam. See the Dockerfiles [`docker/ubuntu_20_04_base`](docker/ubuntu_20_04_base) and [`docker/ubuntu_20_04_dp3`](docker/ubuntu_20_04_dp3) as examples. Some non-standard dependencies of this project are: armadillo, boost, boost-python, casacore, hdf5, aoflagger, and EveryBeam. See the Dockerfiles [`docker/ubuntu_20_04_base`](docker/ubuntu_20_04_base) and/or [`docker/ubuntu_22_04_base`](docker/ubuntu_22_04_base) as examples.
Typical installation commands: Typical installation commands:
``` ```
......
ARG BASE_TAG=latest
FROM $BASE_TAG
ADD . /src
# Build DP3
RUN mkdir /build && cd /build \
&& cmake ../src \
&& make -j$(($(nproc) / 2 > 0 ? $(nproc) / 2:1)) \
&& make install -j$(($(nproc) / 2 > 0 ? $(nproc) / 2:1)) \
&& DP3 \
&& rm -r /src /build
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment