1
+ # This file is solely used for building Solidity on CircleCI
2
+ # and does not intend to be a general purpose installation script.
3
+ #
4
+ # The documentation for solidity is hosted at:
5
+ #
6
+ # https://solidity.readthedocs.org
7
+ #
8
+ # ------------------------------------------------------------------------------
9
+ # This file is part of solidity.
10
+ #
11
+ # solidity is free software: you can redistribute it and/or modify
12
+ # it under the terms of the GNU General Public License as published by
13
+ # the Free Software Foundation, either version 3 of the License, or
14
+ # (at your option) any later version.
15
+ #
16
+ # solidity is distributed in the hope that it will be useful,
17
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ # GNU General Public License for more details.
20
+ #
21
+ # You should have received a copy of the GNU General Public License
22
+ # along with solidity. If not, see <http://www.gnu.org/licenses/>
23
+ #
24
+ # (c) 2020 solidity contributors.
25
+ # ------------------------------------------------------------------------------
26
+
27
+ $ProgressPreference = " SilentlyContinue"
28
+
29
+ $evmone_version = " 0.5.0"
30
+ $evmone_url = " https://github.com/ethereum/evmone/releases/download/v${evmone_version} /evmone-${evmone_version} -windows-amd64.zip"
31
+ $evmone_archive = " $Env: HOME \evmone.zip"
32
+
33
+ Invoke-WebRequest - URI " $evmone_url " - OutFile " $evmone_archive "
34
+ Expand-Archive " $evmone_archive " - DestinationPath evmone
0 commit comments