Skip to content

Commit

Permalink
use devtools set
Browse files Browse the repository at this point in the history
  • Loading branch information
assignUser committed Jan 25, 2024
1 parent 4918dde commit 8b3eb4a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions scripts/circleci-container.dockfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@
#
FROM quay.io/centos/centos:stream8
ARG cpu_target
ENV CPU_TARGET=$cpu_target

COPY scripts/setup-helper-functions.sh /
COPY scripts/setup-centos8.sh /
COPY scripts/setup-adapters.sh /
RUN mkdir build && ( cd build && CPU_TARGET="$cpu_target" bash /setup-centos8.sh ) && rm -rf build
RUN mkdir build && ( cd build && CPU_TARGET="$cpu_target" bash /setup-adapters.sh ) && rm -rf build
RUN mkdir build && ( cd build && bash /setup-centos8.sh ) && rm -rf build
RUN mkdir build && ( cd build && source /opt/rh/gcc-toolset-9/enable && \
bash /setup-adapters.sh ) && rm -rf build

0 comments on commit 8b3eb4a

Please sign in to comment.