Skip to content

Commit

Permalink
chore: fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlJi committed Jul 9, 2024
1 parent 7b380c7 commit 6e675dc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,14 @@ customConfig: # custom config for specific orgs or repos
cd ../uc-biz
golangci-lint run --timeout=10m0s --allow-parallel-runners=true --print-issued-lines=false --out-format=line-number >> $ARTIFACT/lint.log 2>&1
qbox/jarvis:
golangci-lint:
enable: true
command:
- "/bin/sh"
- "-c"
- "--"
args: ["scripts/ci/ci_env_init.sh && CGO_ENABLED=1 golangci-lint run --timeout=10m0s --allow-parallel-runners=true --print-issued-lines=false --out-format=line-number >> $ARTIFACT/lint.log 2>&1"]
args:
- |
source scripts/ci/ci_env_init.sh
CGO_ENABLED=1 golangci-lint run --timeout=10m0s --allow-parallel-runners=true --print-issued-lines=false --out-format=line-number >> $ARTIFACT/lint.log 2>&1

0 comments on commit 6e675dc

Please sign in to comment.