2023-01-01 21:46:21 +00:00
|
|
|
name: Linting
|
|
|
|
|
|
|
|
# Trigger on pull requests and pushes to master branch where Go-related files
|
|
|
|
# have been changed.
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- "go.mod"
|
|
|
|
- "go.sum"
|
|
|
|
- "**.go"
|
|
|
|
- ".github/workflows/lint.yml"
|
|
|
|
- "tools/e2e-output.txt"
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- "go.mod"
|
|
|
|
- "go.sum"
|
|
|
|
- "**.go"
|
|
|
|
- ".github/workflows/lint.yml"
|
|
|
|
- "tools/e2e-output.txt"
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
env:
|
2023-03-25 09:32:18 +00:00
|
|
|
PROMU_VER: '0.14.0'
|
|
|
|
PROMTOOL_VER: '2.43.0'
|
2023-01-01 21:46:21 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: windows-2019
|
|
|
|
steps:
|
2023-01-05 12:10:44 +00:00
|
|
|
- uses: actions/checkout@v3
|
2023-11-12 12:41:14 +00:00
|
|
|
- uses: actions/setup-go@v4
|
2023-01-01 21:46:21 +00:00
|
|
|
with:
|
2023-11-12 12:41:14 +00:00
|
|
|
go-version-file: 'go.mod'
|
2023-01-01 21:46:21 +00:00
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: make test
|
|
|
|
|
|
|
|
- name: Install e2e deps
|
|
|
|
run: |
|
2023-01-01 22:35:14 +00:00
|
|
|
Invoke-WebRequest -Uri https://github.com/prometheus/promu/releases/download/v$($Env:PROMU_VER)/promu-$($Env:PROMU_VER).windows-amd64.zip -OutFile promu-$($Env:PROMU_VER).windows-amd64.zip
|
|
|
|
Expand-Archive -Path promu-$($Env:PROMU_VER).windows-amd64.zip -DestinationPath .
|
|
|
|
Copy-Item -Path promu-$($Env:PROMU_VER).windows-amd64\promu.exe -Destination "$(go env GOPATH)\bin"
|
|
|
|
|
2023-01-01 21:46:21 +00:00
|
|
|
go install github.com/josephspurrier/goversioninfo/cmd/goversioninfo@v1.2.0
|
|
|
|
# GOPATH\bin dir must be appended to PATH else the `promu` command won't be found
|
|
|
|
echo "$(go env GOPATH)\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
|
|
|
|
|
|
|
- name: e2e Test
|
|
|
|
run: make e2e-test
|
|
|
|
|
|
|
|
promtool:
|
|
|
|
runs-on: windows-2019
|
|
|
|
steps:
|
2023-01-05 12:10:44 +00:00
|
|
|
- uses: actions/checkout@v3
|
2023-11-12 12:41:14 +00:00
|
|
|
- uses: actions/setup-go@v4
|
2023-01-01 21:46:21 +00:00
|
|
|
with:
|
2023-11-12 12:41:14 +00:00
|
|
|
go-version-file: 'go.mod'
|
2023-01-01 21:46:21 +00:00
|
|
|
|
|
|
|
- name: Install promtool
|
|
|
|
run: |
|
|
|
|
Invoke-WebRequest -Uri https://github.com/prometheus/prometheus/releases/download/v$($Env:PROMTOOL_VER)/prometheus-$($Env:PROMTOOL_VER).windows-amd64.zip -OutFile prometheus-$($Env:PROMTOOL_VER).windows-amd64.zip
|
|
|
|
Expand-Archive -Path prometheus-$($Env:PROMTOOL_VER).windows-amd64.zip -DestinationPath .
|
|
|
|
Copy-Item -Path prometheus-$($Env:PROMTOOL_VER).windows-amd64\promtool.exe -Destination "$(go env GOPATH)\bin"
|
|
|
|
|
2023-01-01 22:35:14 +00:00
|
|
|
Invoke-WebRequest -Uri https://github.com/prometheus/promu/releases/download/v$($Env:PROMU_VER)/promu-$($Env:PROMU_VER).windows-amd64.zip -OutFile promu-$($Env:PROMU_VER).windows-amd64.zip
|
|
|
|
Expand-Archive -Path promu-$($Env:PROMU_VER).windows-amd64.zip -DestinationPath .
|
|
|
|
Copy-Item -Path promu-$($Env:PROMU_VER).windows-amd64\promu.exe -Destination "$(go env GOPATH)\bin"
|
|
|
|
|
|
|
|
# No binaries available so build from source
|
2023-01-01 21:46:21 +00:00
|
|
|
go install github.com/josephspurrier/goversioninfo/cmd/goversioninfo@v1.2.0
|
|
|
|
# GOPATH\bin dir must be appended to PATH else the `promu` command won't be found
|
|
|
|
echo "$(go env GOPATH)\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
|
|
|
|
|
|
|
- name: Promtool
|
|
|
|
run: make promtool
|
|
|
|
|
|
|
|
lint:
|
|
|
|
runs-on: windows-2022
|
|
|
|
steps:
|
|
|
|
# `gofmt` linter run by golangci-lint fails on CRLF line endings (the default for Windows)
|
|
|
|
- name: Set git to use LF
|
|
|
|
run: |
|
|
|
|
git config --global core.autocrlf false
|
|
|
|
git config --global core.eol lf
|
|
|
|
|
2023-01-05 12:10:44 +00:00
|
|
|
- uses: actions/checkout@v3
|
2023-11-12 12:41:14 +00:00
|
|
|
- uses: actions/setup-go@v4
|
2023-01-01 21:46:21 +00:00
|
|
|
with:
|
2023-11-12 12:41:14 +00:00
|
|
|
go-version-file: 'go.mod'
|
2023-01-01 21:46:21 +00:00
|
|
|
|
|
|
|
- name: golangci-lint
|
|
|
|
uses: golangci/golangci-lint-action@v3
|
|
|
|
with:
|
2023-11-04 19:51:35 +00:00
|
|
|
version: v1.55.2
|
2023-01-01 21:46:21 +00:00
|
|
|
args: "--timeout=5m"
|
|
|
|
|
|
|
|
# golangci-lint action doesn't always provide helpful output, so re-run without the action for
|
|
|
|
# better output of the problem.
|
|
|
|
# The cache from the golangci-lint step is re-used here, so this step should finish quickly.
|
|
|
|
- name: errors
|
|
|
|
if: ${{ failure() }}
|
|
|
|
run: golangci-lint run --timeout=5m -c .golangci.yaml
|