File tree Expand file tree Collapse file tree 2 files changed +15
-17
lines changed Expand file tree Collapse file tree 2 files changed +15
-17
lines changed Original file line number Diff line number Diff line change @@ -109,17 +109,16 @@ jobs:
109
109
- name : Build AvalancheGo Binary
110
110
shell : bash
111
111
run : ./scripts/build.sh
112
- # TODO: Reactivate test once v1.11.0 is published
113
- # - name: Run e2e tests
114
- # shell: bash
115
- # run: ./scripts/tests.upgrade.sh
116
- # - name: Upload tmpnet network dir
117
- # uses: actions/upload-artifact@v4
118
- # if: always()
119
- # with:
120
- # name: upgrade-tmpnet-data
121
- # path: ${{ env.tmpnet_data_path }}
122
- # if-no-files-found: error
112
+ - name : Run e2e tests
113
+ shell : bash
114
+ run : ./scripts/tests.upgrade.sh
115
+ - name : Upload tmpnet network dir
116
+ uses : actions/upload-artifact@v4
117
+ if : always()
118
+ with :
119
+ name : upgrade-tmpnet-data
120
+ path : ${{ env.tmpnet_data_path }}
121
+ if-no-files-found : error
123
122
Lint :
124
123
runs-on : ubuntu-latest
125
124
steps :
Original file line number Diff line number Diff line change 3
3
set -euo pipefail
4
4
5
5
# e.g.,
6
- # ./scripts/tests.upgrade.sh # Use default version
7
- # ./scripts/tests.upgrade.sh 1.10.18 # Specify a version
8
- # AVALANCHEGO_PATH=./path/to/avalanchego ./scripts/tests.upgrade.sh 1.10.18 # Customization of avalanchego path
6
+ # ./scripts/tests.upgrade.sh # Use default version
7
+ # ./scripts/tests.upgrade.sh 1.11.0 # Specify a version
8
+ # AVALANCHEGO_PATH=./path/to/avalanchego ./scripts/tests.upgrade.sh 1.11.0 # Customization of avalanchego path
9
9
if ! [[ " $0 " =~ scripts/tests.upgrade.sh ]]; then
10
10
echo " must be run from repository root"
11
11
exit 255
16
16
# local network, this flag must be updated to the last compatible
17
17
# version with the latest code.
18
18
#
19
- # v1.10.18 includes restrictions on ports sent over the p2p network along with
20
- # proposervm and P-chain rule changes on the local network.
21
- DEFAULT_VERSION=" 1.10.18"
19
+ # v1.11.0 activates Durango.
20
+ DEFAULT_VERSION=" 1.11.0"
22
21
23
22
VERSION=" ${1:- ${DEFAULT_VERSION} } "
24
23
if [[ -z " ${VERSION} " ]]; then
You can’t perform that action at this time.
0 commit comments