2021-05-04 16:57:33 -05:00
|
|
|
name: checks
|
|
|
|
on: [pull_request, workflow_dispatch]
|
2020-02-10 17:27:05 -06:00
|
|
|
|
2021-08-30 13:06:20 -05:00
|
|
|
env:
|
2021-08-30 19:01:30 -05:00
|
|
|
ACT_OWNER: ${{ github.repository_owner }}
|
|
|
|
ACT_REPOSITORY: ${{ github.repository }}
|
2022-03-29 15:10:32 -05:00
|
|
|
GO_VERSION: 1.18
|
2021-12-22 11:29:43 -06:00
|
|
|
CGO_ENABLED: 0
|
2021-08-30 13:06:20 -05:00
|
|
|
|
2020-02-10 17:27:05 -06:00
|
|
|
jobs:
|
2020-02-24 16:43:03 -06:00
|
|
|
lint:
|
2021-05-04 16:57:33 -05:00
|
|
|
name: lint
|
2020-02-24 16:43:03 -06:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-14 10:14:32 -05:00
|
|
|
- uses: actions/checkout@v3
|
2021-05-03 11:52:03 -05:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2022-04-10 21:28:50 -05:00
|
|
|
- uses: actions/setup-go@v3
|
2021-03-30 14:26:25 -05:00
|
|
|
with:
|
2021-08-30 13:06:20 -05:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2022-04-19 14:43:30 -05:00
|
|
|
check-latest: true
|
2023-01-29 20:26:24 -06:00
|
|
|
- uses: golangci/golangci-lint-action@v3.4.0
|
2021-03-29 09:55:51 -05:00
|
|
|
with:
|
2022-08-06 17:53:05 -05:00
|
|
|
version: v1.47.2
|
2023-03-19 18:37:58 -05:00
|
|
|
- uses: megalinter/megalinter/flavors/go@v6.20.1
|
2021-05-03 11:52:03 -05:00
|
|
|
env:
|
|
|
|
DEFAULT_BRANCH: master
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2021-05-04 16:57:33 -05:00
|
|
|
VALIDATE_ALL_CODEBASE: false
|
2021-12-22 11:29:43 -06:00
|
|
|
GITHUB_STATUS_REPORTER: ${{ !env.ACT }}
|
|
|
|
GITHUB_COMMENT_REPORTER: ${{ !env.ACT }}
|
2020-02-24 16:43:03 -06:00
|
|
|
|
2021-05-04 16:57:33 -05:00
|
|
|
test-linux:
|
|
|
|
name: test-linux
|
2020-02-10 17:27:05 -06:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-14 10:14:32 -05:00
|
|
|
- uses: actions/checkout@v3
|
2021-03-29 11:07:13 -05:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2021-03-29 09:55:51 -05:00
|
|
|
- name: Set up QEMU
|
2022-05-08 22:03:00 -05:00
|
|
|
uses: docker/setup-qemu-action@v2
|
2022-04-10 21:28:50 -05:00
|
|
|
- uses: actions/setup-go@v3
|
2021-03-29 09:55:51 -05:00
|
|
|
with:
|
2021-08-30 13:06:20 -05:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2022-04-19 14:43:30 -05:00
|
|
|
check-latest: true
|
2022-03-28 15:05:07 -05:00
|
|
|
- uses: actions/cache@v3
|
2021-05-02 10:13:30 -05:00
|
|
|
if: ${{ !env.ACT }}
|
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-go-
|
2023-01-25 02:14:51 -06:00
|
|
|
- name: Run Tests
|
|
|
|
uses: ./.github/actions/run-tests
|
|
|
|
with:
|
|
|
|
upload-logs-name: logs-linux
|
2021-03-29 11:07:13 -05:00
|
|
|
- name: Upload Codecov report
|
2022-09-25 21:37:58 -05:00
|
|
|
uses: codecov/codecov-action@v3.1.1
|
2021-03-29 09:55:51 -05:00
|
|
|
with:
|
|
|
|
files: coverage.txt
|
|
|
|
fail_ci_if_error: true # optional (default = false)
|
|
|
|
|
2022-11-16 15:29:45 -06:00
|
|
|
test-host:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os:
|
|
|
|
- windows-latest
|
|
|
|
- macos-latest
|
|
|
|
name: test-${{matrix.os}}
|
|
|
|
runs-on: ${{matrix.os}}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
|
|
|
- uses: actions/setup-go@v3
|
|
|
|
with:
|
|
|
|
go-version: ${{ env.GO_VERSION }}
|
|
|
|
check-latest: true
|
2023-01-25 02:14:51 -06:00
|
|
|
- name: Run Tests
|
|
|
|
uses: ./.github/actions/run-tests
|
|
|
|
with:
|
|
|
|
filter: '^TestRunEventHostEnvironment$'
|
|
|
|
upload-logs-name: logs-${{ matrix.os }}
|
2022-11-16 15:29:45 -06:00
|
|
|
|
2020-08-30 00:55:22 -05:00
|
|
|
snapshot:
|
2021-05-04 16:57:33 -05:00
|
|
|
name: snapshot
|
2020-08-30 00:55:22 -05:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-14 10:14:32 -05:00
|
|
|
- uses: actions/checkout@v3
|
2022-04-10 21:28:50 -05:00
|
|
|
- uses: actions/setup-go@v3
|
2021-03-30 14:26:25 -05:00
|
|
|
with:
|
2021-08-30 13:06:20 -05:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2022-04-19 14:43:30 -05:00
|
|
|
check-latest: true
|
2022-03-28 15:05:07 -05:00
|
|
|
- uses: actions/cache@v3
|
2021-05-02 10:13:30 -05:00
|
|
|
if: ${{ !env.ACT }}
|
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-go-
|
2021-03-29 09:55:51 -05:00
|
|
|
- name: GoReleaser
|
2022-12-19 09:46:21 -06:00
|
|
|
uses: goreleaser/goreleaser-action@v4
|
2021-03-29 09:55:51 -05:00
|
|
|
with:
|
2021-10-24 11:36:09 -05:00
|
|
|
version: latest
|
2021-03-29 09:55:51 -05:00
|
|
|
args: release --snapshot --rm-dist
|
2021-05-23 10:32:55 -05:00
|
|
|
- name: Capture x86_64 (64-bit) Linux binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-10 21:38:04 -05:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-03-29 09:55:51 -05:00
|
|
|
with:
|
2021-05-23 10:32:55 -05:00
|
|
|
name: act-linux-amd64
|
2022-04-19 14:27:37 -05:00
|
|
|
path: dist/act_linux_amd64_v1/act
|
2021-05-23 10:32:55 -05:00
|
|
|
- name: Capture i386 (32-bit) Linux binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-10 21:38:04 -05:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-05-23 10:32:55 -05:00
|
|
|
with:
|
|
|
|
name: act-linux-i386
|
|
|
|
path: dist/act_linux_386/act
|
|
|
|
- name: Capture arm64 (64-bit) Linux binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-10 21:38:04 -05:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-05-23 10:32:55 -05:00
|
|
|
with:
|
|
|
|
name: act-linux-arm64
|
|
|
|
path: dist/act_linux_arm64/act
|
|
|
|
- name: Capture armv6 (32-bit) Linux binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-10 21:38:04 -05:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-05-23 10:32:55 -05:00
|
|
|
with:
|
|
|
|
name: act-linux-armv6
|
|
|
|
path: dist/act_linux_arm_6/act
|
|
|
|
- name: Capture armv7 (32-bit) Linux binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-10 21:38:04 -05:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-05-23 10:32:55 -05:00
|
|
|
with:
|
|
|
|
name: act-linux-armv7
|
|
|
|
path: dist/act_linux_arm_7/act
|
|
|
|
- name: Capture x86_64 (64-bit) Windows binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-10 21:38:04 -05:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-03-29 09:55:51 -05:00
|
|
|
with:
|
2021-05-23 10:32:55 -05:00
|
|
|
name: act-windows-amd64
|
2022-04-19 14:27:37 -05:00
|
|
|
path: dist/act_windows_amd64_v1/act.exe
|
2021-05-23 10:32:55 -05:00
|
|
|
- name: Capture i386 (32-bit) Windows binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-10 21:38:04 -05:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-05-23 10:32:55 -05:00
|
|
|
with:
|
|
|
|
name: act-windows-i386
|
|
|
|
path: dist/act_windows_386/act.exe
|
2021-08-30 13:06:20 -05:00
|
|
|
- name: Capture arm64 (64-bit) Windows binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-10 21:38:04 -05:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-08-30 13:06:20 -05:00
|
|
|
with:
|
|
|
|
name: act-windows-arm64
|
|
|
|
path: dist/act_windows_arm64/act.exe
|
2021-05-23 10:32:55 -05:00
|
|
|
- name: Capture armv7 (32-bit) Windows binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-10 21:38:04 -05:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-03-29 09:55:51 -05:00
|
|
|
with:
|
2021-05-23 10:32:55 -05:00
|
|
|
name: act-windows-armv7
|
|
|
|
path: dist/act_windows_arm_7/act.exe
|
|
|
|
- name: Capture x86_64 (64-bit) MacOS binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-10 21:38:04 -05:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-05-23 10:32:55 -05:00
|
|
|
with:
|
|
|
|
name: act-macos-amd64
|
2022-04-19 14:27:37 -05:00
|
|
|
path: dist/act_darwin_amd64_v1/act
|
2021-05-23 10:32:55 -05:00
|
|
|
- name: Capture arm64 (64-bit) MacOS binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-10 21:38:04 -05:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-05-23 10:32:55 -05:00
|
|
|
with:
|
|
|
|
name: act-macos-arm64
|
|
|
|
path: dist/act_darwin_arm64/act
|
2021-12-08 12:49:33 -06:00
|
|
|
- name: Chocolatey
|
|
|
|
uses: ./.github/actions/choco
|
|
|
|
with:
|
|
|
|
version: v0.0.0-pr
|