Skip to content
This repository has been archived by the owner on Oct 5, 2024. It is now read-only.

Commit

Permalink
build: replace ci img entrypoint with test bash script
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Dec 14, 2023
1 parent edcdb76 commit e5349ee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
!docs
!ABOUT-NLS
!config.rpath
!docker/ci-entrypoint.sh
!docker/build-and-test.sh

# API
!python
1 change: 0 additions & 1 deletion docker/ci-entrypoint.sh → docker/build-and-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,4 @@ make install

# Run tests
yellow_echo "Running Tests"
cd /code/build/src/testsuite/libunderpass.all
make check -j `nproc`
6 changes: 3 additions & 3 deletions docker/underpass.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ RUN set -ex \


FROM deps as ci
COPY docker/ci-entrypoint.sh /ci-entrypoint.sh
RUN chmod +x /ci-entrypoint.sh
ENTRYPOINT [ "/ci-entrypoint.sh" ]
COPY docker/build-and-test.sh /build-and-test.sh
RUN chmod +x /build-and-test.sh
ENTRYPOINT [ "/bin/bash", "-c" ]



Expand Down

0 comments on commit e5349ee

Please sign in to comment.