Skip to content

Commit 1a3375a

Browse files
authored
Merge pull request #271 from electrocucaracha/improve_ci
Refactor GitHub workflows
2 parents 32a44fa + e3e5820 commit 1a3375a

File tree

276 files changed

+1272
-682
lines changed

Some content is hidden

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

276 files changed

+1272
-682
lines changed

.github/dependabot.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
# Copyright 2022 Samsung Corporation
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
16+
version: 2
17+
updates:
18+
- package-ecosystem: "github-actions"
19+
directory: "/"
20+
schedule:
21+
interval: "daily"

.github/workflows/verify.yml

+61-63
Original file line numberDiff line numberDiff line change
@@ -13,65 +13,75 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
name: Go
17-
# name: verify TODO rename (requires repo settings update)
18-
16+
name: Check Unit and Integration tests
1917
# yamllint disable-line rule:truthy
2018
on:
2119
push:
22-
branches: [master]
20+
branches:
21+
- master
2322
pull_request:
24-
branches: [master, issue-99-cosmos-upgrade-v0.44]
23+
branches:
24+
- master
25+
- issue-99-cosmos-upgrade-v0.44
2526
workflow_dispatch:
2627

2728
jobs:
28-
29-
build:
30-
name: Build # TODO remove (requires repo settings update)
29+
changes:
3130
runs-on: ubuntu-latest
31+
outputs:
32+
go: ${{ steps.filter.outputs.go }}
33+
src: ${{ steps.filter.outputs.src }}
3234
steps:
33-
34-
- name: Build
35-
run: true
36-
37-
unit:
38-
name: Unit tests # TODO remove (requires repo settings update)
35+
- uses: actions/checkout@v3
36+
- uses: dorny/paths-filter@v2
37+
if: ${{ !env.ACT }}
38+
id: filter
39+
with:
40+
token: ${{ secrets.GITHUB_TOKEN }}
41+
filters: |
42+
go:
43+
- '**/*.go'
44+
- 'go.mod'
45+
- 'go.sum'
46+
src:
47+
- '!**.md'
48+
- '!.github/*'
49+
unit-tests:
50+
name: Check unit tests
3951
runs-on: ubuntu-latest
52+
needs:
53+
- lint
4054
steps:
41-
42-
- name: Set up Go 1.x
43-
uses: actions/setup-go@v2
55+
- uses: actions/setup-go@v2
4456
with:
4557
go-version: ^1.16
46-
47-
- name: Check out code into the Go module directory
48-
uses: actions/checkout@v2
49-
58+
- uses: actions/checkout@v3
5059
- uses: actions/cache@v2
60+
if: ${{ !env.ACT }}
5161
with:
5262
path: |
5363
~/.cache/go-build
5464
~/go/pkg/mod
5565
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
5666
restore-keys: |
5767
${{ runner.os }}-go-
58-
59-
- name: Run units
60-
run: make test
61-
62-
integration:
63-
name: Integration tests # remove (requires repo settings update)
68+
- uses: haveyoudebuggedit/gotestfmt-action@v2
69+
- name: Run tests
70+
run: |
71+
set -euo pipefail
72+
# shellcheck disable=SC2046
73+
go test -json -v $(go list ./... | grep -v '/integration_tests') 2>&1 | tee /tmp/gotest.log | gotestfmt
74+
integration-tests:
75+
if: needs.changes.outputs.src == 'true'
76+
name: Integration tests
6477
runs-on: ubuntu-latest
78+
needs:
79+
- changes
6580
steps:
66-
67-
- name: Set up Go 1.x
68-
uses: actions/setup-go@v2
81+
- uses: actions/setup-go@v2
6982
with:
70-
go-version: ^1.16
71-
72-
- name: Check out code into the Go module directory
73-
uses: actions/checkout@v2
74-
83+
go-version: ^1.13
84+
- uses: actions/checkout@v3
7585
- uses: actions/cache@v2
7686
with:
7787
path: |
@@ -80,42 +90,30 @@ jobs:
8090
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
8191
restore-keys: |
8292
${{ runner.os }}-go-
83-
8493
- name: Run integration tests
85-
run: bash integration_tests/run-all.sh
86-
94+
shell: bash
95+
run: integration_tests/run-all.sh
8796
lint:
88-
name: Lint # TODO remove (requires repo settings update)
97+
if: needs.changes.outputs.go == 'true'
98+
name: Check linter issues with golangci-lint tool
8999
runs-on: ubuntu-latest
100+
needs:
101+
- changes
90102
steps:
91-
92-
- uses: actions/checkout@v2
93-
103+
- uses: actions/checkout@v3
94104
- name: golangci-lint
95105
uses: golangci/golangci-lint-action@v2
96106
with:
97-
version: v1.43
98107
args: --timeout 5m0s
99-
100-
license:
101-
name: License # TODO remove (requires repo settings update)
108+
check:
109+
if: always()
110+
needs:
111+
- unit-tests
112+
- integration-tests
113+
- lint
102114
runs-on: ubuntu-latest
103115
steps:
104-
105-
- name: Set up Go 1.x
106-
if: false # TODO issue 99
107-
uses: actions/setup-go@v2
116+
- name: Decide whether the needed jobs succeeded or failed
117+
uses: re-actors/alls-green@release/v1
108118
with:
109-
go-version: ^1.16
110-
111-
- name: Get google/addlicense
112-
if: false # TODO issue 99
113-
run: go get -u github.com/google/addlicense
114-
115-
- name: Check out code into the Go module directory
116-
if: false # TODO issue 99
117-
uses: actions/checkout@v2
118-
119-
- name: Check license
120-
if: false # TODO issue 99
121-
run: make license-check
119+
jobs: ${{ toJSON(needs) }}

.golangci.yml

+6-11
Original file line numberDiff line numberDiff line change
@@ -16,38 +16,33 @@
1616
linters:
1717
enable-all: true
1818
disable:
19-
- golint
20-
- unparam
19+
- golint # The linter 'golint' is deprecated (since v1.41.0) due to: The repository of the linter has been archived by the owner. Replaced by revive.
2120
- gochecknoinits
2221
- gochecknoglobals
2322
- gomnd
24-
- nolintlint
2523
- dupl
2624
- varnamelen
2725
- tagliatelle
2826
- wrapcheck
29-
- thelper
3027
- testpackage
3128
- paralleltest
3229
- ireturn
33-
- nlreturn
3430
- goerr113
3531
- exhaustivestruct
3632
- wsl
3733
- forcetypeassert
3834
- exhaustive
39-
- scopelint
40-
- revive
35+
- scopelint # The linter 'scopelint' is deprecated (since v1.39.0) due to: The repository of the linter has been deprecated by the owner. Replaced by exportloopref.
4136
- lll
42-
- interfacer
37+
- interfacer # The linter 'interfacer' is deprecated (since v1.38.0) due to: The repository of the linter has been archived by the owner.
4338
- gosec
4439
- funlen
45-
- stylecheck
4640
- cyclop
4741
- forbidigo
4842
- gocognit
4943
- godox
5044
- gomoddirectives
51-
- maligned
45+
- maligned # The linter 'maligned' is deprecated (since v1.38.0) due to: The repository of the linter has been archived by the owner. Replaced by govet 'fieldalignment'.
5246
- gci
53-
- whitespace
47+
- containedctx
48+
- maintidx

app/app.go

+3
Original file line numberDiff line numberDiff line change
@@ -609,6 +609,7 @@ func (app *App) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.Res
609609
panic(err)
610610
}
611611
app.UpgradeKeeper.SetModuleVersionMap(ctx, app.mm.GetVersionMap())
612+
612613
return app.mm.InitGenesis(ctx, app.appCodec, genesisState)
613614
}
614615

@@ -676,6 +677,7 @@ func (app *App) GetMemKey(storeKey string) *sdk.MemoryStoreKey {
676677
// NOTE: This is solely to be used for testing purposes.
677678
func (app *App) GetSubspace(moduleName string) paramstypes.Subspace {
678679
subspace, _ := app.ParamsKeeper.GetSubspace(moduleName)
680+
679681
return subspace
680682
}
681683

@@ -718,6 +720,7 @@ func GetMaccPerms() map[string][]string {
718720
for k, v := range maccPerms {
719721
dupMaccPerms[k] = v
720722
}
723+
721724
return dupMaccPerms
722725
}
723726

app/export.go

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ func (app *App) ExportAppStateAndValidators(
3737
if err != nil {
3838
return servertypes.ExportedApp{}, err
3939
}
40+
4041
return servertypes.ExportedApp{
4142
AppState: appState,
4243
Validators: validators,

cmd/dcld/cmd/genaccounts.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ the address will be looked up in the local Keybase.
9999

100100
ba := authtypes.NewBaseAccount(addr, pk, 0, 0)
101101

102-
var vendorID int32 = 0
102+
var vendorID int32
103103
if viper.GetString(FlagVID) != "" {
104104
vendorID, err = cast.ToInt32E(viper.GetString(FlagVID))
105105
if err != nil {
@@ -142,6 +142,7 @@ the address will be looked up in the local Keybase.
142142
}
143143

144144
genDoc.AppState = appStateJSON
145+
145146
return dclgenutil.ExportGenesisFile(genDoc, genFile)
146147
},
147148
}

cmd/dcld/cmd/light.go

+12-10
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ const (
4646
FlagMaxConn = "max-open-connections"
4747
FlagTrustPeriod = "trusting-period"
4848
FlagStartTimeout = "start-timeout"
49-
FlagTlsCertFile = "tls-cert-file"
50-
FlagTlsCertFileShort = "c"
51-
FlagTlsKeyFile = "tls-key-file"
52-
FlagTlsKeyFileShort = "k"
49+
FlagTLSCertFile = "tls-cert-file"
50+
FlagTLSCertFileShort = "c"
51+
FlagTLSKeyFile = "tls-key-file"
52+
FlagTLSKeyFileShort = "k"
5353
)
5454

5555
// LightCmd represents the base command when called without any subcommands.
@@ -135,8 +135,8 @@ func init() {
135135
LightCmd.Flags().Int64Var(&startTimeout, FlagStartTimeout, 0,
136136
"How many seconds to wait before starting the light client proxy. Mostly for test purposes when light client is started at the same time as the pool.")
137137

138-
LightCmd.Flags().StringVarP(&tlsCertFile, FlagTlsCertFile, FlagTlsCertFileShort, "", "Path to the TLS certificate file")
139-
LightCmd.Flags().StringVarP(&tlsKeyFile, FlagTlsKeyFile, FlagTlsKeyFileShort, "", "Path to the TLS key file")
138+
LightCmd.Flags().StringVarP(&tlsCertFile, FlagTLSCertFile, FlagTLSCertFileShort, "", "Path to the TLS certificate file")
139+
LightCmd.Flags().StringVarP(&tlsKeyFile, FlagTLSKeyFile, FlagTLSKeyFileShort, "", "Path to the TLS key file")
140140
}
141141

142142
func runProxy(cmd *cobra.Command, args []string) error {
@@ -288,6 +288,7 @@ func checkForExistingProviders(db dbm.DB) (string, []string, error) {
288288
return "", []string{""}, err
289289
}
290290
witnessesAddrs := strings.Split(string(witnessesBytes), ",")
291+
291292
return string(primaryBytes), witnessesAddrs, nil
292293
}
293294

@@ -300,19 +301,20 @@ func saveProviders(db dbm.DB, primaryAddr, witnessesAddrs string) error {
300301
if err != nil {
301302
return fmt.Errorf("failed to save witness providers: %w", err)
302303
}
304+
303305
return nil
304306
}
305307

306308
func getTrustedHeightAndHash(primaryAddr string, witnessesAddrs []string) (int64, []byte, error) {
307309
config := rpcserver.DefaultConfig()
308310

309311
// get height and hash from the primary
310-
primaryRpcClient, err := rpchttp.NewWithTimeout(primaryAddr, "/websocket", uint(config.WriteTimeout.Seconds()))
312+
primaryRPCClient, err := rpchttp.NewWithTimeout(primaryAddr, "/websocket", uint(config.WriteTimeout.Seconds()))
311313
if err != nil {
312314
return 0, []byte{}, fmt.Errorf("not able to obtain trusted height and hash: %w", err)
313315
}
314316

315-
res, err := primaryRpcClient.Commit(context.Background(), nil)
317+
res, err := primaryRPCClient.Commit(context.Background(), nil)
316318
if err != nil {
317319
return 0, []byte{}, fmt.Errorf("not able to obtain trusted height and hash: %w", err)
318320
}
@@ -323,12 +325,12 @@ func getTrustedHeightAndHash(primaryAddr string, witnessesAddrs []string) (int64
323325

324326
// check that the hash for the given height is the same on all witnesses
325327
for _, witnessesAddr := range witnessesAddrs {
326-
witnessRpcClient, err := rpchttp.NewWithTimeout(witnessesAddr, "/websocket", uint(config.WriteTimeout.Seconds()))
328+
witnessRPCClient, err := rpchttp.NewWithTimeout(witnessesAddr, "/websocket", uint(config.WriteTimeout.Seconds()))
327329
if err != nil {
328330
return 0, []byte{}, fmt.Errorf("not able to obtain trusted height and hash: %w", err)
329331
}
330332

331-
res, err := witnessRpcClient.Commit(context.Background(), &primaryHeight)
333+
res, err := witnessRPCClient.Commit(context.Background(), &primaryHeight)
332334
if err != nil {
333335
return 0, []byte{}, fmt.Errorf("not able to obtain trusted height and hash: %w", err)
334336
}

cmd/dcld/cmd/root.go

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ type rootOptions struct {
5454
func newRootOptions(options ...Option) rootOptions {
5555
opts := rootOptions{}
5656
opts.apply(options...)
57+
5758
return opts
5859
}
5960

0 commit comments

Comments
 (0)