remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/apps/remix-ide/ci/remixd_test.sh

40 lines
615 B

2 years ago
#!/usr/bin/env bash
2 years ago
2 years ago
set -e
2 years ago
BUILD_ID=${CIRCLE_BUILD_NUM:-${TRAVIS_JOB_NUMBER}}
echo "$BUILD_ID"
TEST_EXITCODE=0
2 years ago
echo $SHELL
2 years ago
# install foundry
2 years ago
curl -L https://foundry.paradigm.xyz | bash || true
2 years ago
# export /home/circleci/.foundry/bin to PATH
export PATH=$PATH:/home/circleci/.foundry/bin
2 years ago
foundryup
forge init foundry
ls -la foundry
2 years ago
# install truffle with yarn
yarn global add truffle
# install truffle metacoin box
mkdir MetaCoin
cd MetaCoin
truffle unbox metacoin
2 years ago
cd ..
2 years ago
2 years ago
# install hardhat
yarn global add hardhat
2 years ago
2 years ago
sleep 5
yarn run build:e2e
echo "$TEST_EXITCODE"
if [ "$TEST_EXITCODE" -eq 1 ]
then
exit 1
fi