Skip to content

Commit 3a998da

Browse files
committed
Test solc-js with v0.5.0
Reverts part of edd80a9
1 parent 4451b2a commit 3a998da

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/externalTests/common.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function setup_solcjs
3737

3838
cd "$dir"
3939
printLog "Setting up solc-js..."
40-
git clone --depth 1 -b master https://github.com/ethereum/solc-js.git solc
40+
git clone --depth 1 -b v0.5.0 https://github.com/ethereum/solc-js.git solc
4141

4242
cd solc
4343
npm install
@@ -107,7 +107,7 @@ function force_solc_truffle_modules
107107
if [ -d "$d" ]; then
108108
cd $d
109109
rm -rf solc
110-
git clone --depth 1 -b master https://github.com/ethereum/solc-js.git solc
110+
git clone --depth 1 -b v0.5.0 https://github.com/ethereum/solc-js.git solc
111111
cp "$1" solc/soljson.js
112112
fi
113113
)

test/solcjsTests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ VERSION="$2"
4040
DIR=$(mktemp -d)
4141
(
4242
echo "Preparing solc-js (master)..."
43-
git clone --depth 1 --branch master https://github.com/ethereum/solc-js "$DIR"
43+
git clone --depth 1 --branch v0.5.0 https://github.com/ethereum/solc-js "$DIR"
4444
cd "$DIR"
4545
# disable "prepublish" script which downloads the latest version
4646
# (we will replace it anyway and it is often incorrectly cached

0 commit comments

Comments
 (0)