Skip to content

Commit

Permalink
fix: Omit ~/go/bin from task (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbp-bvanb authored Dec 13, 2024
1 parent 1eb8f43 commit 250a880
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 12 additions & 2 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ vars:
GOBIN:
sh: |
if [ -z "${GOBIN}" ]; then
if [ -n "${GITHUB_ACTIONS}" ]; then
echo /home/runner/go/bin
exit 0
fi
echo "GOBIN has not been not set. Ensure that it has been set on the system."
exit 1
fi
Expand Down Expand Up @@ -157,6 +162,11 @@ tasks:
cmds:
- task: gci-install
- "{{.GCI}} write --skip-generated {{.GCI_SECTIONS}} ."
golang-log:
cmds:
- |
echo "GOBIN: {{.GOBIN}}"
echo "GOLANG_PARALLEL_TESTS: {{.GOLANG_PARALLEL_TESTS}}"
golangci-lint-install:
silent: true
cmds:
Expand All @@ -169,8 +179,8 @@ tasks:
golangci-lint-run:
silent: true
cmds:
- task: golang-log
- |
echo "GOLANG_PARALLEL_TESTS: {{.GOLANG_PARALLEL_TESTS}}"
golangci-lint run \
--build-tags {{.BUILD_TAGS}} \
--concurrency {{.GOLANG_PARALLEL_TESTS}} \
Expand Down Expand Up @@ -325,8 +335,8 @@ tasks:
desc: run unit tests
silent: true
cmds:
- task: golang-log
- |
echo "GOLANG_PARALLEL_TESTS: {{.GOLANG_PARALLEL_TESTS}}"
go test \
-p {{.GOLANG_PARALLEL_TESTS}} \
-race \
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ runs:
if: inputs.testing-type == 'component' || inputs.testing-type == 'coverage' || inputs.testing-type == 'integration' || inputs.testing-type == 'lint' || inputs.testing-type == 'unit'
shell: bash
run: |
if ! ~/go/bin/task --version | grep -q "Task version: ${{ inputs.task-version }}"; then
if ! task --version | grep -q "Task version: ${{ inputs.task-version }}"; then
major_version=$(echo "${{ inputs.task-version }}" | sed -E 's/^v([0-9]+).*/\1/')
go install github.com/go-task/task/v${major_version}/cmd/task@${{ inputs.task-version }}
fi
Expand Down

0 comments on commit 250a880

Please sign in to comment.