mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
externalTests: Add support for using a native binary
This commit is contained in:
parent
68ff073b3b
commit
eb8e304b47
@ -1044,7 +1044,7 @@ jobs:
|
|||||||
- run:
|
- run:
|
||||||
name: External <<parameters.project>> tests
|
name: External <<parameters.project>> tests
|
||||||
command: |
|
command: |
|
||||||
test/externalTests/<<parameters.project>>.sh /tmp/workspace/soljson.js
|
test/externalTests/<<parameters.project>>.sh solcjs /tmp/workspace/soljson.js
|
||||||
- gitter_notify_failure_unless_pr
|
- gitter_notify_failure_unless_pr
|
||||||
|
|
||||||
b_win: &b_win
|
b_win: &b_win
|
||||||
|
@ -25,7 +25,8 @@ source scripts/common.sh
|
|||||||
source test/externalTests/common.sh
|
source test/externalTests/common.sh
|
||||||
|
|
||||||
verify_input "$@"
|
verify_input "$@"
|
||||||
BINARY_PATH="$1"
|
BINARY_TYPE="$1"
|
||||||
|
BINARY_PATH="$2"
|
||||||
|
|
||||||
function compile_fn { yarn run provision:token:contracts; }
|
function compile_fn { yarn run provision:token:contracts; }
|
||||||
function test_fn { yarn run test:contracts; }
|
function test_fn { yarn run test:contracts; }
|
||||||
@ -42,11 +43,12 @@ function colony_test
|
|||||||
selected_optimizer_levels=$(circleci_select_steps "$(seq "$min_optimizer_level" "$max_optimizer_level")")
|
selected_optimizer_levels=$(circleci_select_steps "$(seq "$min_optimizer_level" "$max_optimizer_level")")
|
||||||
print_optimizer_levels_or_exit "$selected_optimizer_levels"
|
print_optimizer_levels_or_exit "$selected_optimizer_levels"
|
||||||
|
|
||||||
setup_solcjs "$DIR" "$BINARY_PATH"
|
setup_solc "$DIR" "$BINARY_TYPE" "$BINARY_PATH"
|
||||||
download_project "$repo" "$branch" "$DIR"
|
download_project "$repo" "$branch" "$DIR"
|
||||||
|
[[ $BINARY_TYPE == native ]] && replace_global_solc "$BINARY_PATH"
|
||||||
|
|
||||||
neutralize_package_json_hooks
|
neutralize_package_json_hooks
|
||||||
force_truffle_compiler_settings "$config_file" "${DIR}/solc" "$min_optimizer_level"
|
force_truffle_compiler_settings "$config_file" "$BINARY_TYPE" "${DIR}/solc" "$min_optimizer_level"
|
||||||
yarn
|
yarn
|
||||||
git submodule update --init
|
git submodule update --init
|
||||||
|
|
||||||
@ -56,10 +58,10 @@ function colony_test
|
|||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
replace_version_pragmas
|
replace_version_pragmas
|
||||||
force_solc_modules "${DIR}/solc"
|
[[ $BINARY_TYPE == solcjs ]] && force_solc_modules "${DIR}/solc"
|
||||||
|
|
||||||
for level in $selected_optimizer_levels; do
|
for level in $selected_optimizer_levels; do
|
||||||
truffle_run_test "$config_file" "${DIR}/solc" "$level" compile_fn test_fn
|
truffle_run_test "$config_file" "$BINARY_TYPE" "${DIR}/solc" "$level" compile_fn test_fn
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -35,31 +35,43 @@ function print_optimizer_levels_or_exit
|
|||||||
|
|
||||||
function verify_input
|
function verify_input
|
||||||
{
|
{
|
||||||
local binary_path="$1"
|
local binary_type="$1"
|
||||||
|
local binary_path="$2"
|
||||||
|
|
||||||
(( $# == 1 )) || fail "Usage: $0 <path to soljson.js>"
|
(( $# == 2 )) || fail "Usage: $0 native|solcjs <path to solc or soljson.js>"
|
||||||
|
[[ $binary_type == native || $binary_type == solcjs ]] || fail "Invalid binary type: '${binary_type}'. Must be either 'native' or 'solcjs'."
|
||||||
[[ -f "$binary_path" ]] || fail "The compiler binary does not exist at '${binary_path}'"
|
[[ -f "$binary_path" ]] || fail "The compiler binary does not exist at '${binary_path}'"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function setup_solc
|
||||||
function setup_solcjs
|
|
||||||
{
|
{
|
||||||
local test_dir="$1"
|
local test_dir="$1"
|
||||||
local binary_path="$2"
|
local binary_type="$2"
|
||||||
local solcjs_branch="${3:-master}"
|
local binary_path="$3"
|
||||||
local install_dir="${4:-solc/}"
|
local solcjs_branch="${4:-master}"
|
||||||
|
local install_dir="${5:-solc/}"
|
||||||
|
|
||||||
|
[[ $binary_type == native || $binary_type == solcjs ]] || assertFail
|
||||||
|
|
||||||
cd "$test_dir"
|
cd "$test_dir"
|
||||||
printLog "Setting up solc-js..."
|
|
||||||
git clone --depth 1 -b "$solcjs_branch" https://github.com/ethereum/solc-js.git "$install_dir"
|
|
||||||
|
|
||||||
pushd "$install_dir"
|
if [[ $binary_type == solcjs ]]
|
||||||
npm install
|
then
|
||||||
cp "$binary_path" soljson.js
|
printLog "Setting up solc-js..."
|
||||||
SOLCVERSION=$(./solcjs --version)
|
git clone --depth 1 -b "$solcjs_branch" https://github.com/ethereum/solc-js.git "$install_dir"
|
||||||
|
|
||||||
|
pushd "$install_dir"
|
||||||
|
npm install
|
||||||
|
cp "$binary_path" soljson.js
|
||||||
|
SOLCVERSION=$(./solcjs --version)
|
||||||
|
popd
|
||||||
|
else
|
||||||
|
printLog "Setting up solc..."
|
||||||
|
SOLCVERSION=$("$binary_path" --version | tail -n 1 | sed -n -E 's/^Version: (.*)$/\1/p')
|
||||||
|
fi
|
||||||
|
|
||||||
SOLCVERSION_SHORT=$(echo "$SOLCVERSION" | sed -En 's/^([0-9.]+).*\+commit\.[0-9a-f]+.*$/\1/p')
|
SOLCVERSION_SHORT=$(echo "$SOLCVERSION" | sed -En 's/^([0-9.]+).*\+commit\.[0-9a-f]+.*$/\1/p')
|
||||||
printLog "Using compiler version $SOLCVERSION"
|
printLog "Using compiler version $SOLCVERSION"
|
||||||
popd
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function download_project
|
function download_project
|
||||||
@ -127,13 +139,19 @@ function force_solc_modules
|
|||||||
function force_truffle_compiler_settings
|
function force_truffle_compiler_settings
|
||||||
{
|
{
|
||||||
local config_file="$1"
|
local config_file="$1"
|
||||||
local solc_path="$2"
|
local binary_type="$2"
|
||||||
local level="$3"
|
local solc_path="$3"
|
||||||
local evm_version="${4:-"$CURRENT_EVM_VERSION"}"
|
local level="$4"
|
||||||
|
local evm_version="${5:-"$CURRENT_EVM_VERSION"}"
|
||||||
|
|
||||||
|
[[ $binary_type == native || $binary_type == solcjs ]] || assertFail
|
||||||
|
|
||||||
|
[[ $binary_type == native ]] && local solc_path="native"
|
||||||
|
|
||||||
printLog "Forcing Truffle compiler settings..."
|
printLog "Forcing Truffle compiler settings..."
|
||||||
echo "-------------------------------------"
|
echo "-------------------------------------"
|
||||||
echo "Config file: $config_file"
|
echo "Config file: $config_file"
|
||||||
|
echo "Binary type: $binary_type"
|
||||||
echo "Compiler path: $solc_path"
|
echo "Compiler path: $solc_path"
|
||||||
echo "Optimization level: $level"
|
echo "Optimization level: $level"
|
||||||
echo "Optimizer settings: $(optimizer_settings_for_level "$level")"
|
echo "Optimizer settings: $(optimizer_settings_for_level "$level")"
|
||||||
@ -148,13 +166,15 @@ function force_truffle_compiler_settings
|
|||||||
function force_hardhat_compiler_binary
|
function force_hardhat_compiler_binary
|
||||||
{
|
{
|
||||||
local config_file="$1"
|
local config_file="$1"
|
||||||
local solc_path="$2"
|
local binary_type="$2"
|
||||||
|
local solc_path="$3"
|
||||||
|
|
||||||
printLog "Configuring Hardhat..."
|
printLog "Configuring Hardhat..."
|
||||||
echo "-------------------------------------"
|
echo "-------------------------------------"
|
||||||
echo "Config file: ${config_file}"
|
echo "Config file: ${config_file}"
|
||||||
|
echo "Binary type: ${binary_type}"
|
||||||
echo "Compiler path: ${solc_path}"
|
echo "Compiler path: ${solc_path}"
|
||||||
hardhat_solc_build_subtask "$SOLCVERSION_SHORT" "$SOLCVERSION" "$solc_path" >> "$config_file"
|
hardhat_solc_build_subtask "$SOLCVERSION_SHORT" "$SOLCVERSION" "$binary_type" "$solc_path" >> "$config_file"
|
||||||
}
|
}
|
||||||
|
|
||||||
function force_hardhat_compiler_settings
|
function force_hardhat_compiler_settings
|
||||||
@ -236,6 +256,16 @@ function optimizer_settings_for_level
|
|||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function replace_global_solc
|
||||||
|
{
|
||||||
|
local solc_path="$1"
|
||||||
|
|
||||||
|
[[ ! -e solc ]] || fail "A file named 'solc' already exists in '${PWD}'."
|
||||||
|
|
||||||
|
ln -s "$solc_path" solc
|
||||||
|
export PATH="$PWD:$PATH"
|
||||||
|
}
|
||||||
|
|
||||||
function truffle_compiler_settings
|
function truffle_compiler_settings
|
||||||
{
|
{
|
||||||
local solc_path="$1"
|
local solc_path="$1"
|
||||||
@ -256,7 +286,13 @@ function truffle_compiler_settings
|
|||||||
function hardhat_solc_build_subtask {
|
function hardhat_solc_build_subtask {
|
||||||
local solc_version="$1"
|
local solc_version="$1"
|
||||||
local full_solc_version="$2"
|
local full_solc_version="$2"
|
||||||
local solc_path="$3"
|
local binary_type="$3"
|
||||||
|
local solc_path="$4"
|
||||||
|
|
||||||
|
[[ $binary_type == native || $binary_type == solcjs ]] || assertFail
|
||||||
|
|
||||||
|
[[ $binary_type == native ]] && local is_solcjs=false
|
||||||
|
[[ $binary_type == solcjs ]] && local is_solcjs=true
|
||||||
|
|
||||||
echo "const {TASK_COMPILE_SOLIDITY_GET_SOLC_BUILD} = require('hardhat/builtin-tasks/task-names');"
|
echo "const {TASK_COMPILE_SOLIDITY_GET_SOLC_BUILD} = require('hardhat/builtin-tasks/task-names');"
|
||||||
echo "const assert = require('assert');"
|
echo "const assert = require('assert');"
|
||||||
@ -265,7 +301,7 @@ function hardhat_solc_build_subtask {
|
|||||||
echo " assert(args.solcVersion == '${solc_version}', 'Unexpected solc version: ' + args.solcVersion)"
|
echo " assert(args.solcVersion == '${solc_version}', 'Unexpected solc version: ' + args.solcVersion)"
|
||||||
echo " return {"
|
echo " return {"
|
||||||
echo " compilerPath: '$(realpath "$solc_path")',"
|
echo " compilerPath: '$(realpath "$solc_path")',"
|
||||||
echo " isSolcJs: true,"
|
echo " isSolcJs: ${is_solcjs},"
|
||||||
echo " version: args.solcVersion,"
|
echo " version: args.solcVersion,"
|
||||||
echo " longVersion: '${full_solc_version}'"
|
echo " longVersion: '${full_solc_version}'"
|
||||||
echo " }"
|
echo " }"
|
||||||
@ -307,13 +343,14 @@ function compile_and_run_test
|
|||||||
function truffle_run_test
|
function truffle_run_test
|
||||||
{
|
{
|
||||||
local config_file="$1"
|
local config_file="$1"
|
||||||
local solc_path="$2"
|
local binary_type="$2"
|
||||||
local optimizer_level="$3"
|
local solc_path="$3"
|
||||||
local compile_fn="$4"
|
local optimizer_level="$4"
|
||||||
local test_fn="$5"
|
local compile_fn="$5"
|
||||||
|
local test_fn="$6"
|
||||||
|
|
||||||
truffle_clean
|
truffle_clean
|
||||||
force_truffle_compiler_settings "$config_file" "$solc_path" "$optimizer_level"
|
force_truffle_compiler_settings "$config_file" "$binary_type" "$solc_path" "$optimizer_level"
|
||||||
compile_and_run_test compile_fn test_fn truffle_verify_compiler_version
|
compile_and_run_test compile_fn test_fn truffle_verify_compiler_version
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,7 +25,8 @@ source scripts/common.sh
|
|||||||
source test/externalTests/common.sh
|
source test/externalTests/common.sh
|
||||||
|
|
||||||
verify_input "$@"
|
verify_input "$@"
|
||||||
BINARY_PATH="$1"
|
BINARY_TYPE="$1"
|
||||||
|
BINARY_PATH="$2"
|
||||||
|
|
||||||
function compile_fn { npx truffle compile; }
|
function compile_fn { npx truffle compile; }
|
||||||
function test_fn { npm run test; }
|
function test_fn { npm run test; }
|
||||||
@ -42,22 +43,23 @@ function ens_test
|
|||||||
selected_optimizer_levels=$(circleci_select_steps "$(seq "$min_optimizer_level" "$max_optimizer_level")")
|
selected_optimizer_levels=$(circleci_select_steps "$(seq "$min_optimizer_level" "$max_optimizer_level")")
|
||||||
print_optimizer_levels_or_exit "$selected_optimizer_levels"
|
print_optimizer_levels_or_exit "$selected_optimizer_levels"
|
||||||
|
|
||||||
setup_solcjs "$DIR" "$BINARY_PATH"
|
setup_solc "$DIR" "$BINARY_TYPE" "$BINARY_PATH"
|
||||||
download_project "$repo" "$branch" "$DIR"
|
download_project "$repo" "$branch" "$DIR"
|
||||||
|
[[ $BINARY_TYPE == native ]] && replace_global_solc "$BINARY_PATH"
|
||||||
|
|
||||||
# Use latest Truffle. Older versions crash on the output from 0.8.0.
|
# Use latest Truffle. Older versions crash on the output from 0.8.0.
|
||||||
force_truffle_version ^5.1.55
|
force_truffle_version ^5.1.55
|
||||||
|
|
||||||
neutralize_package_lock
|
neutralize_package_lock
|
||||||
neutralize_package_json_hooks
|
neutralize_package_json_hooks
|
||||||
force_truffle_compiler_settings "$config_file" "${DIR}/solc" "$min_optimizer_level"
|
force_truffle_compiler_settings "$config_file" "$BINARY_TYPE" "${DIR}/solc" "$min_optimizer_level"
|
||||||
npm install
|
npm install
|
||||||
|
|
||||||
replace_version_pragmas
|
replace_version_pragmas
|
||||||
force_solc_modules "${DIR}/solc"
|
[[ $BINARY_TYPE == solcjs ]] && force_solc_modules "${DIR}/solc"
|
||||||
|
|
||||||
for level in $selected_optimizer_levels; do
|
for level in $selected_optimizer_levels; do
|
||||||
truffle_run_test "$config_file" "${DIR}/solc" "$level" compile_fn test_fn
|
truffle_run_test "$config_file" "$BINARY_TYPE" "${DIR}/solc" "$level" compile_fn test_fn
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,7 +25,8 @@ source scripts/common.sh
|
|||||||
source test/externalTests/common.sh
|
source test/externalTests/common.sh
|
||||||
|
|
||||||
verify_input "$@"
|
verify_input "$@"
|
||||||
BINARY_PATH="$1"
|
BINARY_TYPE="$1"
|
||||||
|
BINARY_PATH="$2"
|
||||||
|
|
||||||
function compile_fn { npx truffle compile; }
|
function compile_fn { npx truffle compile; }
|
||||||
function test_fn { npm test; }
|
function test_fn { npm test; }
|
||||||
@ -42,22 +43,23 @@ function gnosis_safe_test
|
|||||||
selected_optimizer_levels=$(circleci_select_steps "$(seq "$min_optimizer_level" "$max_optimizer_level")")
|
selected_optimizer_levels=$(circleci_select_steps "$(seq "$min_optimizer_level" "$max_optimizer_level")")
|
||||||
print_optimizer_levels_or_exit "$selected_optimizer_levels"
|
print_optimizer_levels_or_exit "$selected_optimizer_levels"
|
||||||
|
|
||||||
setup_solcjs "$DIR" "$BINARY_PATH"
|
setup_solc "$DIR" "$BINARY_TYPE" "$BINARY_PATH"
|
||||||
download_project "$repo" "$branch" "$DIR"
|
download_project "$repo" "$branch" "$DIR"
|
||||||
|
[[ $BINARY_TYPE == native ]] && replace_global_solc "$BINARY_PATH"
|
||||||
|
|
||||||
sed -i 's|github:gnosis/mock-contract#sol_0_5_0|github:solidity-external-tests/mock-contract#master_080|g' package.json
|
sed -i 's|github:gnosis/mock-contract#sol_0_5_0|github:solidity-external-tests/mock-contract#master_080|g' package.json
|
||||||
sed -i -E 's|"@gnosis.pm/util-contracts": "[^"]+"|"@gnosis.pm/util-contracts": "github:solidity-external-tests/util-contracts#solc-7_080"|g' package.json
|
sed -i -E 's|"@gnosis.pm/util-contracts": "[^"]+"|"@gnosis.pm/util-contracts": "github:solidity-external-tests/util-contracts#solc-7_080"|g' package.json
|
||||||
|
|
||||||
neutralize_package_lock
|
neutralize_package_lock
|
||||||
neutralize_package_json_hooks
|
neutralize_package_json_hooks
|
||||||
force_truffle_compiler_settings "$config_file" "${DIR}/solc" "$min_optimizer_level"
|
force_truffle_compiler_settings "$config_file" "$BINARY_TYPE" "${DIR}/solc" "$min_optimizer_level"
|
||||||
npm install --package-lock
|
npm install --package-lock
|
||||||
|
|
||||||
replace_version_pragmas
|
replace_version_pragmas
|
||||||
force_solc_modules "${DIR}/solc"
|
[[ $BINARY_TYPE == solcjs ]] && force_solc_modules "${DIR}/solc"
|
||||||
|
|
||||||
for level in $selected_optimizer_levels; do
|
for level in $selected_optimizer_levels; do
|
||||||
truffle_run_test "$config_file" "${DIR}/solc" "$level" compile_fn test_fn
|
truffle_run_test "$config_file" "$BINARY_TYPE" "${DIR}/solc" "$level" compile_fn test_fn
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,7 +25,8 @@ source scripts/common.sh
|
|||||||
source test/externalTests/common.sh
|
source test/externalTests/common.sh
|
||||||
|
|
||||||
verify_input "$@"
|
verify_input "$@"
|
||||||
BINARY_PATH="$1"
|
BINARY_TYPE="$1"
|
||||||
|
BINARY_PATH="$2"
|
||||||
|
|
||||||
function compile_fn { npx truffle compile; }
|
function compile_fn { npx truffle compile; }
|
||||||
function test_fn { npm test; }
|
function test_fn { npm test; }
|
||||||
@ -42,21 +43,22 @@ function gnosis_safe_test
|
|||||||
selected_optimizer_levels=$(circleci_select_steps "$(seq "$min_optimizer_level" "$max_optimizer_level")")
|
selected_optimizer_levels=$(circleci_select_steps "$(seq "$min_optimizer_level" "$max_optimizer_level")")
|
||||||
print_optimizer_levels_or_exit "$selected_optimizer_levels"
|
print_optimizer_levels_or_exit "$selected_optimizer_levels"
|
||||||
|
|
||||||
setup_solcjs "$DIR" "$BINARY_PATH"
|
setup_solc "$DIR" "$BINARY_TYPE" "$BINARY_PATH"
|
||||||
download_project "$repo" "$branch" "$DIR"
|
download_project "$repo" "$branch" "$DIR"
|
||||||
|
[[ $BINARY_TYPE == native ]] && replace_global_solc "$BINARY_PATH"
|
||||||
|
|
||||||
sed -i 's|github:gnosis/mock-contract#sol_0_5_0|github:solidity-external-tests/mock-contract#master_080|g' package.json
|
sed -i 's|github:gnosis/mock-contract#sol_0_5_0|github:solidity-external-tests/mock-contract#master_080|g' package.json
|
||||||
|
|
||||||
neutralize_package_lock
|
neutralize_package_lock
|
||||||
neutralize_package_json_hooks
|
neutralize_package_json_hooks
|
||||||
force_truffle_compiler_settings "$config_file" "${DIR}/solc" "$min_optimizer_level"
|
force_truffle_compiler_settings "$config_file" "$BINARY_TYPE" "${DIR}/solc" "$min_optimizer_level"
|
||||||
npm install --package-lock
|
npm install --package-lock
|
||||||
|
|
||||||
replace_version_pragmas
|
replace_version_pragmas
|
||||||
force_solc_modules "${DIR}/solc"
|
[[ $BINARY_TYPE == solcjs ]] && force_solc_modules "${DIR}/solc"
|
||||||
|
|
||||||
for level in $selected_optimizer_levels; do
|
for level in $selected_optimizer_levels; do
|
||||||
truffle_run_test "$config_file" "${DIR}/solc" "$level" compile_fn test_fn
|
truffle_run_test "$config_file" "$BINARY_TYPE" "${DIR}/solc" "$level" compile_fn test_fn
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ function solcjs_test
|
|||||||
SOLCJS_INPUT_DIR="$TEST_DIR"/test/externalTests/solc-js
|
SOLCJS_INPUT_DIR="$TEST_DIR"/test/externalTests/solc-js
|
||||||
|
|
||||||
# set up solc-js on the branch specified
|
# set up solc-js on the branch specified
|
||||||
setup_solcjs "$DIR" "$SOLJSON" master solc/
|
setup_solc "$DIR" solcjs "$SOLJSON" master solc/
|
||||||
cd solc/
|
cd solc/
|
||||||
|
|
||||||
printLog "Updating index.js file..."
|
printLog "Updating index.js file..."
|
||||||
|
@ -25,7 +25,8 @@ source scripts/common.sh
|
|||||||
source test/externalTests/common.sh
|
source test/externalTests/common.sh
|
||||||
|
|
||||||
verify_input "$@"
|
verify_input "$@"
|
||||||
BINARY_PATH="$1"
|
BINARY_TYPE="$1"
|
||||||
|
BINARY_PATH="$2"
|
||||||
|
|
||||||
function compile_fn { npm run compile; }
|
function compile_fn { npm run compile; }
|
||||||
function test_fn { npm test; }
|
function test_fn { npm test; }
|
||||||
@ -42,11 +43,11 @@ function zeppelin_test
|
|||||||
selected_optimizer_levels=$(circleci_select_steps "$(seq "$min_optimizer_level" "$max_optimizer_level")")
|
selected_optimizer_levels=$(circleci_select_steps "$(seq "$min_optimizer_level" "$max_optimizer_level")")
|
||||||
print_optimizer_levels_or_exit "$selected_optimizer_levels"
|
print_optimizer_levels_or_exit "$selected_optimizer_levels"
|
||||||
|
|
||||||
setup_solcjs "$DIR" "$BINARY_PATH"
|
setup_solc "$DIR" "$BINARY_TYPE" "$BINARY_PATH"
|
||||||
download_project "$repo" "$branch" "$DIR"
|
download_project "$repo" "$branch" "$DIR"
|
||||||
|
|
||||||
neutralize_package_json_hooks
|
neutralize_package_json_hooks
|
||||||
force_hardhat_compiler_binary "$config_file" "$BINARY_PATH"
|
force_hardhat_compiler_binary "$config_file" "$BINARY_TYPE" "$BINARY_PATH"
|
||||||
force_hardhat_compiler_settings "$config_file" "$min_optimizer_level"
|
force_hardhat_compiler_settings "$config_file" "$min_optimizer_level"
|
||||||
npm install
|
npm install
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user