File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -38,19 +38,19 @@ jobs:
38
38
run : ./cmbenv -c docker-py${{ matrix.python }}-debian-${{ matrix.mpi }}
39
39
40
40
- name : Set tag name
41
- run : tag=$(echo "${GITHUB_REF}" | sed -e 's/.*\/\(v.*\)/\1/') && echo "TAGNAME=${tag}-${{ matrix.mpi }} " >> $GITHUB_ENV
41
+ run : tag=$(echo "${GITHUB_REF}" | sed -e 's/.*\/\(v.*\)/\1/') && echo "TAGNAME=${tag}" >> $GITHUB_ENV
42
42
43
43
- name : Build Docker Image
44
- run : docker build -t hpc4cmb/cmbenv:${TAGNAME} -f Dockerfile_docker-py${{ matrix.python }}-debian-${{ matrix.mpi }} .
44
+ run : docker build -t hpc4cmb/cmbenv-${{ matrix.mpi }} :${TAGNAME} -f Dockerfile_docker-py${{ matrix.python }}-debian-${{ matrix.mpi }} .
45
45
46
46
- name : Test Docker Image
47
- run : docker run hpc4cmb/cmbenv:${TAGNAME} python -c 'import toast.tests; toast.tests.run()'
47
+ run : docker run hpc4cmb/cmbenv-${{ matrix.mpi }} :${TAGNAME} python -c 'import toast.tests; toast.tests.run()'
48
48
49
49
- name : Tag Latest
50
- run : docker tag hpc4cmb/cmbenv:${TAGNAME} hpc4cmb/cmbenv:latest
50
+ run : docker tag hpc4cmb/cmbenv-${{ matrix.mpi }} :${TAGNAME} hpc4cmb/cmbenv-${{ matrix.mpi }} :latest
51
51
52
52
- name : Push Docker Image
53
- run : echo "${DOCKER_PASSWORD}" | docker login -u "${DOCKER_USERNAME}" --password-stdin && docker push hpc4cmb/cmbenv:${TAGNAME} && docker push hpc4cmb/cmbenv:latest
53
+ run : echo "${DOCKER_PASSWORD}" | docker login -u "${DOCKER_USERNAME}" --password-stdin && docker push hpc4cmb/cmbenv-${{ matrix.mpi }} :${TAGNAME} && docker push hpc4cmb/cmbenv-${{ matrix.mpi }} :latest
54
54
55
55
toastdeps :
56
56
name : TOAST Dependencies Python ${{ matrix.python }}
Original file line number Diff line number Diff line change @@ -24,6 +24,11 @@ RUN apt-get -y update \
24
24
xvfb \
25
25
&& rm -fr /var/lib/apt/lists/*
26
26
27
+ # Ensure that the lib directory of our install prefix
28
+ # is in the linker search path.
29
+
30
+ RUN echo "@AUX_PREFIX@/lib" > /etc/ld.so.conf.d/local.conf && ldconfig
31
+
27
32
# Set up locales
28
33
29
34
ENV LANG C.UTF-8
You can’t perform that action at this time.
0 commit comments