Skip to content

Commit

Permalink
fixes to support tessellation 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
scasplte2 committed Jan 15, 2025
1 parent 2e2fdcf commit 69112b1
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions infra/docker/metagraph-ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,13 @@ RUN apt-get update && \

RUN git clone https://github.com/Constellation-Labs/tessellation.git && \
cd tessellation && \
git checkout $CHECKOUT_TESSELLATION_VERSION && \
rm -r version.sbt && \
echo "ThisBuild / version := \"$TESSELLATION_VERSION_SEMVER\"" > version.sbt
git checkout $CHECKOUT_TESSELLATION_VERSION

RUN cd tessellation && \
if [ "$SHOULD_USE_UPDATED_MODULES" = "true" ]; then \
sbt kernel/publishM2 shared/publishM2 keytool/publishM2 nodeShared/publishM2 dagL1/publishM2 currencyL0/publishM2 currencyL1/publishM2; \
sbt -Dversion.override=$TESSELLATION_VERSION_SEMVER publishM2; \
else \
sbt kernel/publishM2 shared/publishM2 keytool/publishM2 sdk/publishM2 dagL1/publishM2 currencyL0/publishM2 currencyL1/publishM2; \
sbt -Dversion.override=$TESSELLATION_VERSION_SEMVER kernel/publishM2 shared/publishM2 keytool/publishM2 sdk/publishM2 dagL1/publishM2 currencyL0/publishM2 currencyL1/publishM2; \
fi

RUN cd tessellation && \
Expand Down

0 comments on commit 69112b1

Please sign in to comment.