Skip to content

Commit 130d25e

Browse files
authored
Merge pull request #3423 from Algo-devops-service/relbeta3.3.0
go-algorand 3.3.0-beta
2 parents 7dcf9d8 + 2356974 commit 130d25e

File tree

940 files changed

+5664
-1959
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

940 files changed

+5664
-1959
lines changed

.circleci/config.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@ workflows:
166166
context:
167167
- slack-secrets
168168
- aws-secrets
169-
170169
#- windows_x64_build
171170

172171
commands:
@@ -197,7 +196,7 @@ commands:
197196
shell: bash.exe
198197
command: |
199198
choco install -y msys2 pacman make wget --force
200-
choco install -y golang --version=1.14.7 --force
199+
choco install -y golang --version=1.16.11 --force
201200
choco install -y python3 --version=3.7.3 --force
202201
export msys2='cmd //C RefreshEnv.cmd '
203202
export msys2+='& set MSYS=winsymlinks:nativestrict '
@@ -322,7 +321,6 @@ commands:
322321
export PACKAGE_NAMES=$(echo $PACKAGES | tr -d '\n')
323322
export PARTITION_TOTAL=${CIRCLE_NODE_TOTAL}
324323
export PARTITION_ID=${CIRCLE_NODE_INDEX}
325-
export PARALLEL_FLAG="-p 1"
326324
gotestsum --format testname --junitfile << parameters.result_path >>/<< parameters.result_subdir >>/${CIRCLE_NODE_INDEX}/results.xml --jsonfile << parameters.result_path >>/<< parameters.result_subdir >>/${CIRCLE_NODE_INDEX}/testresults.json -- --tags "sqlite_unlock_notify sqlite_omit_load_extension" << parameters.short_test_flag >> -race -timeout 1h -coverprofile=coverage.txt -covermode=atomic -p 1 $PACKAGE_NAMES
327325
- store_artifacts:
328326
path: << parameters.result_path >>
@@ -432,6 +430,7 @@ commands:
432430
export TEST_RESULTS=<< parameters.result_path >>/<< parameters.result_subdir >>/${CIRCLE_NODE_INDEX}
433431
export PARTITION_TOTAL=${CIRCLE_NODE_TOTAL}
434432
export PARTITION_ID=${CIRCLE_NODE_INDEX}
433+
export PARALLEL_FLAG="-p 1"
435434
test/scripts/run_integration_tests.sh
436435
- store_artifacts:
437436
path: << parameters.result_path >>
@@ -478,11 +477,14 @@ commands:
478477
- attach_workspace:
479478
at: << parameters.build_dir >>
480479
- run:
481-
name: Upload binaries << parameters.platform >>
480+
name: Upload Binaries << parameters.platform >>
482481
command: |
482+
if [ "${CIRCLE_BRANCH}" = "rel/nightly" ]
483+
then
484+
export NO_BUILD="true"
485+
fi
483486
export PATH=$(echo "$PATH" | sed -e "s|:${HOME}/\.go_workspace/bin||g" | sed -e 's|:/usr/local/go/bin||g')
484487
export GOPATH="<< parameters.build_dir >>/go"
485-
export NO_BUILD=true
486488
export TRAVIS_BRANCH=${CIRCLE_BRANCH}
487489
scripts/travis/deploy_packages.sh
488490
- when:

.github/workflows/reviewdog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Install specific golang
4545
uses: actions/setup-go@v2
4646
with:
47-
go-version: '1.16.6'
47+
go-version: '1.16.11'
4848
- name: Create folders for golangci-lint
4949
run: mkdir -p cicdtmp/golangci-lint
5050
- name: Check if custom golangci-lint is already built

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,5 @@ assets
6565

6666
index.html
6767

68+
# test summary
69+
testresults.json

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ else
88
export GOPATH := $(shell go env GOPATH)
99
GOPATH1 := $(firstword $(subst :, ,$(GOPATH)))
1010
endif
11-
export GO111MODULE := on
1211
export GOPROXY := direct
1312
SRCPATH := $(shell pwd)
1413
ARCH := $(shell ./scripts/archtype.sh)

README.md

Lines changed: 6 additions & 4 deletions

THANKS.md

Lines changed: 6 additions & 6 deletions

agreement/README.md

Lines changed: 1 addition & 1 deletion

agreement/abstractions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2019-2021 Algorand, Inc.
1+
// Copyright (C) 2019-2022 Algorand, Inc.
22
// This file is part of go-algorand
33
//
44
// go-algorand is free software: you can redistribute it and/or modify

agreement/actions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2019-2021 Algorand, Inc.
1+
// Copyright (C) 2019-2022 Algorand, Inc.
22
// This file is part of go-algorand
33
//
44
// go-algorand is free software: you can redistribute it and/or modify

agreement/actor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2019-2021 Algorand, Inc.
1+
// Copyright (C) 2019-2022 Algorand, Inc.
22
// This file is part of go-algorand
33
//
44
// go-algorand is free software: you can redistribute it and/or modify

0 commit comments

Comments
 (0)