Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
adamant-pwn committed Jul 24, 2024
1 parent f7626b0 commit 8d57f84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
run: |
container_id=$(docker create ghcr.io/${{ steps.repo_owner.outputs.owner }}/build_test:latest)
docker cp $container_id:/rawhash2/build ./build
find ./build -type f -name "*.o" -exec touch {} \;
find ./build -type f -name "*.a" -exec touch {} \;
docker rm $container_id
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY . /rawhash2

RUN mkdir -p build && cd build \
&& cmake .. \
&& make -j
&& make -j 3

ENTRYPOINT ["./build/bin/rawhash2"]

Expand Down

0 comments on commit 8d57f84

Please sign in to comment.