Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • Oriol.Tinto/setup-enstools-compression-enviroment
1 result
Show changes
Commits on Source (2)
FROM ubuntu:latest
# Copy recipes and set workdir
COPY dependencies workdir
WORKDIR workdir
# Install some dependencies through apt
RUN export DEBIAN_FRONTEND=noninteractive \
&& apt update \
......@@ -11,6 +7,9 @@ RUN export DEBIAN_FRONTEND=noninteractive \
&& apt install -yq swig gcc gfortran pkg-config libzstd-dev \
&& apt install -yq libproj-dev proj-data proj-bin libgeos-dev libeccodes-dev
# Copy recipes and set workdir
COPY dependencies workdir
WORKDIR workdir
# Install the filters + libpressio + enstools-compression
RUN make
......@@ -17,7 +17,7 @@ mkdir -p ${INSTALLDIR}
switch2build
TAG_NAME=v${VERSION}
git clone ${REPOSITORY} -b ${TAG_NAME} source
git clone ${REPOSITORY} -b ${TAG_NAME} source --depth 1
cd source
......
......@@ -21,7 +21,7 @@ REPOSITORY=https://github.com/HDFGroup/hdf5.git
switch2build
# extract tar file
git clone ${REPOSITORY} -b ${TAG_NAME} source
git clone ${REPOSITORY} -b ${TAG_NAME} source --depth 1
# enter the folder
cd source
......
......@@ -31,7 +31,7 @@ source venv/bin/activate
if [ ! -d source ]; then
# Clone repository and enter directory
git clone ${REPOSITORY} -b ${VERSION} source
git clone ${REPOSITORY} -b ${VERSION} source --depth 1
fi
cd source
......
......@@ -16,7 +16,7 @@ mkdir -p ${INSTALLDIR}
switch2build
# Clone repository and enter directory
git clone ${REPOSITORY} -b ${VERSION} source
git clone ${REPOSITORY} -b ${VERSION} source --depth 1
cd source
......
......@@ -18,7 +18,7 @@ switch2build
# Clone repository and enter directory
TAG_NAME=v${VERSION}
git clone ${REPOSITORY} -b ${TAG_NAME} source
git clone ${REPOSITORY} -b ${TAG_NAME} source --depth 1
cd source
......
......@@ -17,7 +17,7 @@ mkdir -p ${INSTALLDIR}
switch2build
# Clone repository and enter directory
git clone ${REPOSITORY} -b ${VERSION} source
git clone ${REPOSITORY} -b ${VERSION} source --depth 1
cd source
......