commit
646438e9dd
@ -1,77 +1,77 @@ |
|||||||
const testFolder = './apps/remix-ide-e2e/src/tests/'; |
|
||||||
const fs = require('fs'); |
const fs = require('fs'); |
||||||
|
var child_process = require('child_process'); |
||||||
|
const { exit } = require('process'); |
||||||
|
|
||||||
let url = 'https://binaries.soliditylang.org/wasm/list.json' |
const child = child_process.spawnSync('grep -r --include="*.json" --include="*.ts" --include="*.tsx" "+commit" apps/**/* libs/**/*', [], { encoding: 'utf8', cwd: process.cwd(), shell: true }); |
||||||
|
|
||||||
const axios = require('axios') |
if (child.error) { |
||||||
|
console.log("ERROR: ", child); |
||||||
|
exit(1); |
||||||
|
} |
||||||
|
|
||||||
// use axios to download the file
|
|
||||||
axios({ |
|
||||||
url: url, |
|
||||||
method: 'GET', |
|
||||||
}).then((response) => { |
|
||||||
|
|
||||||
let info = response.data; |
let soljson =[]; |
||||||
info.builds = info.builds.filter(build => build.path.indexOf('nightly') === -1) |
|
||||||
for (let build of info.builds) { |
|
||||||
|
|
||||||
const buildurl = `https://solc-bin.ethereum.org/wasm/${build.path}`; |
const quotedVersionsRegex = /['"v]\d*\.\d*\.\d*\+commit\.[\d\w]*/g; |
||||||
console.log(buildurl) |
let quotedVersionsRegexMatch = child.stdout.match(quotedVersionsRegex) |
||||||
|
if(quotedVersionsRegexMatch){ |
||||||
|
let soljson2 = quotedVersionsRegexMatch.map((item) => item.replace('\'', 'v').replace('"', 'v')) |
||||||
|
console.log('non nightly soljson versions found: ', soljson2); |
||||||
|
if(soljson2) soljson = soljson.concat(soljson2); |
||||||
|
} |
||||||
|
|
||||||
const path = `./dist/apps/remix-ide/assets/js/${build.path}`; |
|
||||||
// use axios to get the file
|
|
||||||
try { |
|
||||||
axios({ |
|
||||||
method: 'get', |
|
||||||
url: buildurl, |
|
||||||
}).then(function (response) { |
|
||||||
fs.writeFile(path, response.data, function (err) { |
|
||||||
if (err) { |
|
||||||
console.log(err); |
|
||||||
} |
|
||||||
}) |
|
||||||
}) |
|
||||||
} catch (e) { |
|
||||||
console.log('Failed to download ' + build.path + ' from ' + buildurl) |
|
||||||
} |
|
||||||
|
|
||||||
} |
const nightlyVersionsRegex = /\d*\.\d*\.\d-nightly.*\+commit\.[\d\w]*/g |
||||||
|
const nightlyVersionsRegexMatch = child.stdout.match(nightlyVersionsRegex) |
||||||
|
if(nightlyVersionsRegexMatch){ |
||||||
|
let soljson3 = nightlyVersionsRegexMatch.map((item) => 'v' + item); |
||||||
|
console.log('nightly soljson versions found: ', soljson3); |
||||||
|
if(soljson3) soljson = soljson.concat(soljson3); |
||||||
} |
} |
||||||
) |
|
||||||
|
|
||||||
fs.readdirSync(testFolder).forEach(file => { |
if (soljson) { |
||||||
let c = fs.readFileSync(testFolder + file, 'utf8'); |
// filter out duplicates
|
||||||
const re = /(?<=soljson).*(?=(.js))/g; |
soljson = soljson.filter((item, index) => soljson.indexOf(item) === index); |
||||||
const soljson = c.match(re); |
|
||||||
if (soljson) { |
// manually add some versions
|
||||||
for (let i = 0; i < soljson.length; i++) { |
soljson.push('v0.7.6+commit.7338295f'); |
||||||
|
|
||||||
|
console.log('soljson versions found: ', soljson, soljson.length); |
||||||
|
|
||||||
|
for (let i = 0; i < soljson.length; i++) { |
||||||
const version = soljson[i]; |
const version = soljson[i]; |
||||||
if (version && version.indexOf('nightly') > -1) { |
if (version) { |
||||||
const url = `https://solc-bin.ethereum.org/bin/soljson${version}.js`; |
let url = '' |
||||||
console.log(url) |
|
||||||
|
|
||||||
const path = `./dist/apps/remix-ide/assets/js/soljson${version}.js`; |
// if nightly
|
||||||
// use axios to get the file
|
if (version.includes('nightly')) { |
||||||
try { |
url = `https://binaries.soliditylang.org/bin/soljson-${version}.js`; |
||||||
axios({ |
}else{ |
||||||
method: 'get', |
url = `https://binaries.soliditylang.org/wasm/soljson-${version}.js`; |
||||||
url: url, |
|
||||||
}).then(function (response) { |
|
||||||
fs.writeFile(path, response.data, function (err) { |
|
||||||
if (err) { |
|
||||||
console.log(err); |
|
||||||
} |
} |
||||||
}) |
|
||||||
}) |
const dir = './dist/apps/remix-ide/assets/js/soljson'; |
||||||
|
if (!fs.existsSync(dir)) { |
||||||
|
fs.mkdirSync(dir); |
||||||
|
} |
||||||
|
|
||||||
|
const path = `./dist/apps/remix-ide/assets/js/soljson/soljson-${version}.js`; |
||||||
|
// check if the file exists
|
||||||
|
const exists = fs.existsSync(path); |
||||||
|
if (!exists) { |
||||||
|
console.log('URL:', url) |
||||||
|
try { |
||||||
|
// use curl to download the file
|
||||||
|
child_process.exec(`curl -o ${path} ${url}`, { encoding: 'utf8', cwd: process.cwd(), shell: true }) |
||||||
} catch (e) { |
} catch (e) { |
||||||
console.log('Failed to download soljson' + version + ' from ' + url) |
console.log('Failed to download soljson' + version + ' from ' + url) |
||||||
} |
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
} |
} |
||||||
|
|
||||||
}
|
}
|
||||||
} |
|
||||||
|
|
||||||
}); |
} |
||||||
|
|
||||||
|
@ -0,0 +1,33 @@ |
|||||||
|
#!/usr/bin/env bash |
||||||
|
|
||||||
|
echo "Downloading latest soljson.js from https://binaries.soliditylang.org/wasm/list.json" |
||||||
|
set -e |
||||||
|
# check if curl is installed |
||||||
|
if ! command -v curl &> /dev/null |
||||||
|
then |
||||||
|
echo "curl could not be found" |
||||||
|
exit |
||||||
|
fi |
||||||
|
|
||||||
|
|
||||||
|
# download https://binaries.soliditylang.org/wasm/list.json as json |
||||||
|
curl -s https://binaries.soliditylang.org/wasm/list.json > list.json |
||||||
|
# get the latest version without jq |
||||||
|
latest=$(grep 'latestRelease' list.json | cut -d '"' -f 4) |
||||||
|
echo "latest version: $latest" |
||||||
|
# get url |
||||||
|
url=$(grep "\"$latest\":" list.json | cut -d '"' -f 4) |
||||||
|
echo "url: $url" |
||||||
|
path="https://binaries.soliditylang.org/bin/$url" |
||||||
|
echo "path: $path" |
||||||
|
# download the file to ./apps/remix-ide/src/assets/js/soljson.js |
||||||
|
curl -s $path > ./apps/remix-ide/src/assets/js/soljson.js |
||||||
|
# if directory ./apps/remix-ide/src/assets/js/soljson does not exist, create it |
||||||
|
if [ ! -d "./apps/remix-ide/src/assets/js/soljson" ]; then |
||||||
|
mkdir ./apps/remix-ide/src/assets/js/soljson |
||||||
|
fi |
||||||
|
cp ./apps/remix-ide/src/assets/js/soljson.js ./apps/remix-ide/src/assets/js/soljson/$url |
||||||
|
|
||||||
|
# remove list.json |
||||||
|
rm list.json |
||||||
|
|
Loading…
Reference in new issue