Skip to content

Commit

Permalink
push on push
Browse files Browse the repository at this point in the history
  • Loading branch information
koide3 committed Jul 10, 2024
1 parent 923c85f commit bafd4e3
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions docker/ubuntu/Dockerfile.gcc
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ RUN cmake .. \
-DBUILD_TESTS=ON \
-DBUILD_EXAMPLE=ON \
-DBUILD_WITH_CUDA=OFF \
-DCMAKE_BUILD_TYPE=Release
RUN make -j$(nproc)
RUN make test
RUN make install
-DCMAKE_BUILD_TYPE=Release && \
make -j$(nproc) && \
make test && \
make install

CMD ["bash"]
6 changes: 3 additions & 3 deletions docker/ubuntu/Dockerfile.gcc.cuda
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ RUN cmake .. \
-DBUILD_EXAMPLE=ON \
-DBUILD_WITH_CUDA=ON \
-DBUILD_WITH_CUDA_MULTIARCH=ON \
-DCMAKE_BUILD_TYPE=Release
RUN make -j$(nproc)
RUN make install
-DCMAKE_BUILD_TYPE=Release && \
make -j$(nproc) && \
make install

CMD ["bash"]
8 changes: 4 additions & 4 deletions docker/ubuntu/Dockerfile.llvm
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ RUN CC=clang CXX=clang++ \
-DBUILD_TESTS=ON \
-DBUILD_EXAMPLE=ON \
-DBUILD_WITH_CUDA=OFF \
-DCMAKE_BUILD_TYPE=Release
RUN make -j$(nproc)
RUN make test
RUN make install
-DCMAKE_BUILD_TYPE=Release && \
make -j$(nproc) && \
make test && \
make install

CMD ["bash"]
6 changes: 3 additions & 3 deletions docker/ubuntu/Dockerfile.llvm.cuda
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ RUN CC=clang CXX=clang++ \
-DBUILD_EXAMPLE=ON \
-DBUILD_WITH_CUDA=ON \
-DBUILD_WITH_CUDA_MULTIARCH=ON \
-DCMAKE_BUILD_TYPE=Release
RUN make -j$(nproc)
RUN make install
-DCMAKE_BUILD_TYPE=Release && \
make -j$(nproc) && \
make install

CMD ["bash"]

0 comments on commit bafd4e3

Please sign in to comment.