@@ -92,6 +92,19 @@ ARG CVC_RV_NAME="cvc_rv"
92
92
RUN --mount=type=bind,source=images/cvc_rv,target=/images/cvc_rv \
93
93
bash /images/cvc_rv/scripts/install.sh
94
94
95
+ # ######################################################################
96
+ # Compile fault
97
+ # ######################################################################
98
+ # FIXME build dependencies clean as stand-alone stages
99
+ FROM base as fault
100
+ ARG FAULT_REPO_URL="https://github.com/AUCOHL/Fault.git"
101
+ ARG FAULT_REPO_COMMIT="0d42398b287fa8ed755f8f5bb518c14b65be4d52"
102
+ ARG FAULT_NAME="fault"
103
+ RUN --mount=type=bind,source=images/fault,target=/images/fault \
104
+ bash /images/fault/scripts/dependencies.sh
105
+ RUN --mount=type=bind,source=images/fault,target=/images/fault \
106
+ bash /images/fault/scripts/install.sh
107
+
95
108
# ######################################################################
96
109
# Compile gaw3-xschem
97
110
# ######################################################################
@@ -384,6 +397,7 @@ ENV OMPI_MCA_btl_vader_single_copy_mechanism=none
384
397
COPY --from=open_pdks ${PDK_ROOT}/ ${PDK_ROOT}/
385
398
COPY --from=covered ${TOOLS}/ ${TOOLS}/
386
399
COPY --from=cvc_rv ${TOOLS}/ ${TOOLS}/
400
+ COPY --from=fault ${TOOLS}/ ${TOOLS}/
387
401
COPY --from=gaw3-xschem ${TOOLS}/ ${TOOLS}/
388
402
COPY --from=gds3d ${TOOLS}/ ${TOOLS}/
389
403
COPY --from=gds3d ${PDK_ROOT}/ ${PDK_ROOT}/
0 commit comments