Skip to content

Commit fd0463f

Browse files
committed
aaaaaa
1 parent f951048 commit fd0463f

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/docker-image-and-run.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
docker create --name extract-container my-image-name:latest
2424
2525
# Copy the binary from the container
26-
docker run --rm -v $PWD:/data my-image-name:latest a 50
26+
docker run --rm -v $PWD:/data my-image-name:latest
2727
2828
# Remove the container
2929
docker rm extract-container

Dockerfile

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,7 @@ ENV CXX=/usr/bin/clang++
2626

2727
RUN mkdir -p /root/Mergen/build
2828
WORKDIR /root/Mergen/build
29-
30-
# Default build argument for testing
31-
ARG TESTING=false
32-
ENV TESTING ${TESTING}
33-
34-
# Run cmake with the option to enable testing if TESTING is true
35-
RUN cmake .. ${TESTING:+-DMERGEN_TESTING=1} && cmake --build . -j $(nproc)
29+
RUN cmake .. && cmake --build . -j $(nproc)
3630

3731
# Provide the built binary path as the default output for the container
3832
WORKDIR /root/Mergen/build

0 commit comments

Comments
 (0)