Skip to content

Commit

Permalink
fix: Omit ~/go/bin from task
Browse files Browse the repository at this point in the history
  • Loading branch information
sbp-bvanb committed Dec 13, 2024
1 parent 1eb8f43 commit 1e2428c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ vars:
GOBIN:
sh: |
if [ -z "${GOBIN}" ]; then
if [ -n "${GITHUB_ACTIONS}" ]; then
echo "Running inside a GitHub Actions runner."
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 @@ -170,6 +176,7 @@ tasks:
silent: true
cmds:
- |
echo "GOBIN: {{.GOBIN}}"
echo "GOLANG_PARALLEL_TESTS: {{.GOLANG_PARALLEL_TESTS}}"
golangci-lint run \
--build-tags {{.BUILD_TAGS}} \
Expand Down Expand Up @@ -326,6 +333,7 @@ tasks:
silent: true
cmds:
- |
echo "GOBIN: {{.GOBIN}}"
echo "GOLANG_PARALLEL_TESTS: {{.GOLANG_PARALLEL_TESTS}}"
go test \
-p {{.GOLANG_PARALLEL_TESTS}} \
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 1e2428c

Please sign in to comment.