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