File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed
Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 66 - master
77 tags :
88 - ' *'
9- pull_request :
9+ pull_request :
1010
1111env :
1212 REGISTRY : ghcr.io
Original file line number Diff line number Diff line change @@ -114,13 +114,16 @@ FROM base AS build-spinal
114114# | tee /etc/apt/sources.list.d/sbt_old.list \
115115# && apt update && apt install sbt
116116
117- ARG MILL_VERSION="0.10.9 "
117+ ARG MILL_VERSION="1.1.0 "
118118RUN \
119- curl -L -o /usr/local/bin/mill https://github. com/lihaoyi/mill/releases/download/ $MILL_VERSION/$MILL_VERSION && \
119+ curl -L -o /usr/local/bin/mill https://repo1.maven.org/maven2/ com/lihaoyi/mill-dist/ $MILL_VERSION/mill-dist- $MILL_VERSION-mill.sh && \
120120 chmod +x /usr/local/bin/mill && \
121- touch build.sc && \
122- mill -i resolve _ && \
123- rm build.sc
121+ mkdir -p /tmp/mill-build && \
122+ cd /tmp/mill-build && \
123+ touch build.sc && \
124+ mill -i resolve _ && \
125+ cd / && \
126+ rm -rf /tmp/mill-build
124127
125128FROM base AS run
126129
@@ -142,4 +145,4 @@ COPY --from=build-symbiyosys /opt /opt
142145COPY --from=build-verilator /opt /opt
143146COPY --from=build-spinal /opt /opt
144147COPY --from=build-spinal /usr/local/bin/mill /opt/bin/mill
145- # COPY --from=build-spinal /sbt /sbt
148+ # COPY --from=build-spinal /sbt /sbt
You can’t perform that action at this time.
0 commit comments