mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			85 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# ------------------------------------------------------------------------------
 | 
						|
# This file is part of solidity.
 | 
						|
#
 | 
						|
# solidity is free software: you can redistribute it and/or modify
 | 
						|
# it under the terms of the GNU General Public License as published by
 | 
						|
# the Free Software Foundation, either version 3 of the License, or
 | 
						|
# (at your option) any later version.
 | 
						|
#
 | 
						|
# solidity is distributed in the hope that it will be useful,
 | 
						|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
# GNU General Public License for more details.
 | 
						|
#
 | 
						|
# You should have received a copy of the GNU General Public License
 | 
						|
# along with solidity.  If not, see <http://www.gnu.org/licenses/>
 | 
						|
#
 | 
						|
# (c) 2022 solidity contributors.
 | 
						|
#------------------------------------------------------------------------------
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
source scripts/common.sh
 | 
						|
source test/externalTests/common.sh
 | 
						|
 | 
						|
verify_input "$@"
 | 
						|
BINARY_TYPE="$1"
 | 
						|
BINARY_PATH="$2"
 | 
						|
 | 
						|
function compile_fn { npm run compile; }
 | 
						|
function test_fn { npm run test; }
 | 
						|
 | 
						|
function bleeps_test
 | 
						|
{
 | 
						|
    local repo="https://github.com/wighawag/bleeps"
 | 
						|
    local ref_type=tag
 | 
						|
    local ref=bleeps_migrations # TODO: There's a 0.4.19 contract in 'main' that would need patching for the latest compiler.
 | 
						|
    local config_file="hardhat.config.ts"
 | 
						|
    local config_var=config
 | 
						|
 | 
						|
    local compile_only_presets=()
 | 
						|
    local settings_presets=(
 | 
						|
        "${compile_only_presets[@]}"
 | 
						|
        #ir-no-optimize            # Compilation fails with: "YulException: Variable param_0 is 2 slot(s) too deep inside the stack."
 | 
						|
        #ir-optimize-evm-only      # Compilation fails with: "YulException: Variable param_0 is 2 slot(s) too deep inside the stack."
 | 
						|
        ir-optimize-evm+yul
 | 
						|
        #legacy-no-optimize        # Compilation fails with: "CompilerError: Stack too deep, try removing local variables."
 | 
						|
        #legacy-optimize-evm-only  # Compilation fails with: "CompilerError: Stack too deep, try removing local variables."
 | 
						|
        legacy-optimize-evm+yul
 | 
						|
    )
 | 
						|
 | 
						|
    [[ $SELECTED_PRESETS != "" ]] || SELECTED_PRESETS=$(circleci_select_steps_multiarg "${settings_presets[@]}")
 | 
						|
    print_presets_or_exit "$SELECTED_PRESETS"
 | 
						|
 | 
						|
    setup_solc "$DIR" "$BINARY_TYPE" "$BINARY_PATH"
 | 
						|
    download_project "$repo" "$ref_type" "$ref" "$DIR"
 | 
						|
 | 
						|
    pushd "common-lib/"
 | 
						|
    neutralize_package_json_hooks
 | 
						|
    npm install
 | 
						|
    npm run build
 | 
						|
    popd
 | 
						|
 | 
						|
    pushd "contracts/"
 | 
						|
    sed -i 's|"bleeps-common": "workspace:\*",|"bleeps-common": "file:../common-lib/",|g' package.json
 | 
						|
 | 
						|
    neutralize_package_lock
 | 
						|
    neutralize_package_json_hooks
 | 
						|
    force_hardhat_compiler_binary "$config_file" "$BINARY_TYPE" "$BINARY_PATH"
 | 
						|
    force_hardhat_compiler_settings "$config_file" "$(first_word "$SELECTED_PRESETS")" "$config_var"
 | 
						|
    npm install npm-run-all
 | 
						|
    npm install
 | 
						|
 | 
						|
    replace_version_pragmas
 | 
						|
 | 
						|
    for preset in $SELECTED_PRESETS; do
 | 
						|
        hardhat_run_test "$config_file" "$preset" "${compile_only_presets[*]}" compile_fn test_fn "$config_var"
 | 
						|
    done
 | 
						|
 | 
						|
    popd
 | 
						|
}
 | 
						|
 | 
						|
external_test Bleeps bleeps_test
 |