Skip to content

Commit 4e99cca

Browse files
committed
CLD-587: Remove unnecessary configs
1 parent f3b2d40 commit 4e99cca

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

Jenkinsfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,7 @@ void resultNotification(message) {
115115

116116
void lint() {
117117
sh '''
118-
# Added to fix 'Context loading failed error'
119-
go get ./...
120-
echo Installing golangci-lint
121-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.50.0
122-
make lint saveOutput=true path=./bin/
118+
make lint saveOutput=true
123119
'''
124120

125121
LINT_OUTPUT = sh(returnStdout: true, script: 'echo helm template lint output: ;cat helm-lint-output.txt ;echo all tests lint output: ;cat test-lint-output.txt').trim()

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ lint:
7070
helm lint --with-subcharts charts/ $(if $(saveOutput),> helm-lint-output.txt,)
7171

7272
@echo "> Linting all tests....."
73-
$(if $(path),$(path),)golangci-lint run $(if $(saveOutput),> test-lint-output.txt,)
73+
golangci-lint run $(if $(saveOutput),> test-lint-output.txt,)
7474

7575
## ---------- Testing Tasks ----------
7676

0 commit comments

Comments
 (0)