Commit 12dc5093 authored by Will Cory's avatar Will Cory Committed by GitHub

fix: Fix broken CI from latest ci builder and devnet job (#6287)

More concise python

More concise
Co-authored-by: default avatarWill Cory <willcory@Wills-MacBook-Pro.local>
Co-authored-by: default avatarMatthew Slipper <me@matthewslipper.com>

fix: Quick fix to missing yarn problem

fix: remove foundryup

try still sourcing it?

fix: Add node.js to devnet tests

fix: Correctly run node foundryup etc.

desperately trying stuff

OHHHH that's the bug: go had a bug in it

add back foudnryup

check version too

fix: Install pnpm and yarn in ci builder

todos

comment in dockerfile
parent a77bedbe
This diff is collapsed.
......@@ -56,7 +56,9 @@ RUN apt-get update && \
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.48.0 && \
curl -fLSs https://raw.githubusercontent.com/CircleCI-Public/circleci-cli/master/install.sh | bash
RUN echo "downloading pnpm" && npm i -g pnpm
# We need to isntall yarn because a bespoke dependency installed from github https://codeload.github.com/Saw-mon-and-Natalie/clones-with-immutable-arg needs it
# it is installed from github which means it's postpack script which uses yarn is ran when unpacked into node_modules
RUN echo "downloading pnpm and yarn" && npm i -g pnpm && npm i -g yarn@1 && pnpm --version && yarn --version
RUN echo "downloading solidity compilers" && \
curl -o solc-linux-amd64-v0.5.17+commit.d19bba13 -sL https://binaries.soliditylang.org/linux-amd64/solc-linux-amd64-v0.5.17+commit.d19bba13 && \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment