Skip to content

Commit

Permalink
fix codecov and permanent fix for entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
rasolca committed Oct 1, 2024
1 parent c0ad98f commit d92b4c8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 4 additions & 0 deletions ci/docker/build.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ LABEL com.jfrog.artifactory.retention.maxDays="21"
ENV DEBIAN_FRONTEND=noninteractive \
PATH="$PATH:/opt/spack/bin" \
SPACK_COLOR=always

# Overwrite entrypoint as NVIDIA images set a script that clog the output.
ENTRYPOINT []
CMD [ "/bin/bash" ]
SHELL ["/bin/bash", "-c"]

ARG EXTRA_APTGET
Expand Down
3 changes: 1 addition & 2 deletions ci/docker/codecov.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ RUN spack repo rm --scope site dlaf && \
spack repo add ${SOURCE}/spack && \
spack -e ci develop --no-clone --path ${SOURCE} --build-directory ${BUILD} dla-future@master && \
spack -e ci concretize -f && \
spack -e ci --config "config:flags:keep_werror:all" install --jobs ${NUM_PROCS} --keep-stage --verbose && \
find ${BUILD} -name CMakeFiles -exec rm -rf {} +
spack -e ci --config "config:flags:keep_werror:all" install --jobs ${NUM_PROCS} --keep-stage --verbose

RUN mkdir -p ${BIN} && cp -L ${SOURCE}/ci/{mpi-ctest,check-threads} ${BIN}

Expand Down
3 changes: 0 additions & 3 deletions ci/docker/deploy.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,3 @@ ENV NVIDIA_REQUIRE_CUDA "cuda>=10.2"
ENV LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so

WORKDIR ${BUILD}

ENTRYPOINT []
CMD [ "/bin/bash" ]

0 comments on commit d92b4c8

Please sign in to comment.