ci: -j2
All checks were successful
Deploy to GHCR / Build + Publish 16 (push) Successful in 1h9m37s
Deploy to GHCR / Build + Publish 14 (push) Successful in 1h0m58s
Deploy to GHCR / Build + Publish 8 (push) Successful in 40m32s

This commit is contained in:
Carl Pearson
2025-09-02 12:26:08 -06:00
parent a8bbf8b8cd
commit 770dcd4094
3 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ RUN cmake -S llvm-project-14.0.6.src/llvm -B build \
-DLLVM_ENABLE_PROJECTS='clang' \
-DCMAKE_BUILD_TYPE=MinSizeRel \
-DLLVM_TARGETS_TO_BUILD=""
RUN make -C build install
RUN make -C build -j2 install
# base final image off ubi8-micro
FROM docker.io/redhat/ubi8-micro

View File

@@ -16,7 +16,7 @@ RUN cmake -S llvm-project-16.0.6.src/llvm -B build \
-DLLVM_ENABLE_PROJECTS='clang' \
-DCMAKE_BUILD_TYPE=MinSizeRel \
-DLLVM_TARGETS_TO_BUILD=""
RUN make -C build install
RUN make -C build -j2 install
# base final image off ubi8-micro
FROM docker.io/redhat/ubi8-micro

View File

@@ -19,7 +19,7 @@ RUN cmake -S llvm-8.0.1.src -B build \
-DLLVM_ENABLE_PROJECTS='clang' \
-DCMAKE_BUILD_TYPE=MinSizeRel \
-DLLVM_TARGETS_TO_BUILD=""
RUN make -C build install
RUN make -C build -j2 install
# base final image off ubi8-micro
FROM docker.io/redhat/ubi8-micro