-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release' into merge-release-into-master
- Loading branch information
Showing
10 changed files
with
249 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM node:18-bullseye-slim | ||
RUN apt-get update && \ | ||
apt-get install -y git docker.io python3 make gcc g++ curl jq | ||
ARG BOLD_CONTRACTS_BRANCH=bold-merge-script | ||
WORKDIR /workspace | ||
RUN git clone --no-checkout https://github.com/OffchainLabs/nitro-contracts.git ./ | ||
RUN git checkout ${BOLD_CONTRACTS_BRANCH} | ||
RUN yarn install && yarn cache clean | ||
RUN curl -L https://foundry.paradigm.xyz | bash | ||
ENV PATH="${PATH}:/root/.foundry/bin" | ||
RUN foundryup | ||
RUN touch scripts/config.ts | ||
RUN yarn build:all | ||
ENTRYPOINT ["yarn"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"target": { | ||
"scripts": { | ||
"cache-from": [ | ||
"type=local,src=/tmp/.buildx-cache" | ||
], | ||
"cache-to": [ | ||
"type=local,dest=/tmp/.buildx-cache,mode=max" | ||
], | ||
"output": [ | ||
"type=docker" | ||
] | ||
}, | ||
"rollupcreator": { | ||
"cache-from": [ | ||
"type=local,src=/tmp/.buildx-cache" | ||
], | ||
"cache-to": [ | ||
"type=local,dest=/tmp/.buildx-cache,mode=max" | ||
], | ||
"output": [ | ||
"type=docker" | ||
] | ||
}, | ||
"boldupgrader": { | ||
"cache-from": [ | ||
"type=local,src=/tmp/.buildx-cache" | ||
], | ||
"cache-to": [ | ||
"type=local,dest=/tmp/.buildx-cache,mode=max" | ||
], | ||
"output": [ | ||
"type=docker" | ||
] | ||
}, | ||
"tokenbridge": { | ||
"cache-from": [ | ||
"type=local,src=/tmp/.buildx-cache" | ||
], | ||
"cache-to": [ | ||
"type=local,dest=/tmp/.buildx-cache,mode=max" | ||
], | ||
"output": [ | ||
"type=docker" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
FROM node:18-bullseye-slim | ||
ARG NITRO_CONTRACTS_BRANCH=main | ||
RUN apt-get update && \ | ||
apt-get install -y git docker.io python3 build-essential curl jq | ||
apt-get install -y git docker.io python3 make gcc g++ curl jq | ||
ARG NITRO_CONTRACTS_BRANCH=main | ||
WORKDIR /workspace | ||
RUN git clone --no-checkout https://github.com/OffchainLabs/nitro-contracts.git ./ | ||
RUN git checkout ${NITRO_CONTRACTS_BRANCH} | ||
RUN yarn install && yarn cache clean | ||
RUN curl -L https://foundry.paradigm.xyz | bash | ||
ENV PATH="${PATH}:/root/.foundry/bin" | ||
RUN foundryup | ||
RUN touch scripts/config.ts | ||
RUN yarn install | ||
RUN yarn build:all | ||
ENTRYPOINT ["yarn"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.