2021-05-04 21:57:33 +00:00
|
|
|
name: checks
|
|
|
|
on: [pull_request, workflow_dispatch]
|
2020-02-10 23:27:05 +00:00
|
|
|
|
|
|
|
jobs:
|
2020-02-24 22:43:03 +00:00
|
|
|
lint:
|
2021-05-04 21:57:33 +00:00
|
|
|
name: lint
|
2020-02-24 22:43:03 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-03-29 14:55:51 +00:00
|
|
|
- uses: actions/checkout@v2
|
2021-05-03 16:52:03 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-03-30 19:26:25 +00:00
|
|
|
- uses: actions/setup-go@v1
|
|
|
|
with:
|
|
|
|
go-version: 1.16
|
2021-03-29 14:55:51 +00:00
|
|
|
- uses: golangci/golangci-lint-action@v2
|
|
|
|
env:
|
|
|
|
CGO_ENABLED: 0
|
|
|
|
with:
|
2021-05-18 06:14:49 +00:00
|
|
|
version: v1.40.0
|
2021-05-03 16:52:03 +00:00
|
|
|
- uses: github/super-linter@v3
|
|
|
|
env:
|
|
|
|
DEFAULT_BRANCH: master
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
FILTER_REGEX_EXCLUDE: .*testdata/*
|
2021-05-04 21:57:33 +00:00
|
|
|
VALIDATE_ALL_CODEBASE: false
|
2021-05-03 16:52:03 +00:00
|
|
|
VALIDATE_BASH: false
|
|
|
|
VALIDATE_DOCKERFILE: false
|
|
|
|
VALIDATE_DOCKERFILE_HADOLINT: false
|
|
|
|
VALIDATE_GO: false # it's broken, see commit message
|
|
|
|
VALIDATE_JSCPD: false
|
|
|
|
VALIDATE_SHELL_SHFMT: false
|
2020-02-24 22:43:03 +00:00
|
|
|
|
2021-05-04 21:57:33 +00:00
|
|
|
test-linux:
|
|
|
|
name: test-linux
|
2020-02-10 23:27:05 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-03-29 14:55:51 +00:00
|
|
|
- uses: actions/checkout@v2
|
2021-03-29 16:07:13 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2021-03-29 14:55:51 +00:00
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
- uses: actions/setup-go@v1
|
|
|
|
with:
|
2021-03-30 19:26:25 +00:00
|
|
|
go-version: 1.16
|
2021-05-02 15:13:30 +00:00
|
|
|
- uses: actions/cache@v2
|
|
|
|
if: ${{ !env.ACT }}
|
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-go-
|
|
|
|
- run: go test -v -cover -coverprofile=coverage.txt -covermode=atomic ./...
|
2021-03-29 14:55:51 +00:00
|
|
|
env:
|
|
|
|
CGO_ENABLED: 0
|
2021-03-29 16:07:13 +00:00
|
|
|
- name: Upload Codecov report
|
|
|
|
uses: codecov/codecov-action@v1.3.1
|
2021-03-29 14:55:51 +00:00
|
|
|
with:
|
|
|
|
files: coverage.txt
|
|
|
|
fail_ci_if_error: true # optional (default = false)
|
|
|
|
|
|
|
|
test-macos:
|
2021-05-04 21:57:33 +00:00
|
|
|
name: test-macos
|
2021-03-29 14:55:51 +00:00
|
|
|
runs-on: macos-latest
|
|
|
|
continue-on-error: true # Don't let macos test fail whole workflow
|
2021-05-02 15:13:30 +00:00
|
|
|
env:
|
|
|
|
ISO_PATH: ~/.docker/machine/cache/boot2docker.iso
|
2021-03-29 14:55:51 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-go@v1
|
|
|
|
with:
|
2021-03-30 19:26:25 +00:00
|
|
|
go-version: 1.16
|
2021-05-02 15:13:30 +00:00
|
|
|
- uses: actions/cache@v2
|
|
|
|
if: ${{ !env.ACT }}
|
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-go-
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
key: boot2docker
|
|
|
|
path: ${{ env.ISO_PATH }}
|
|
|
|
restore-keys: boot2docker
|
|
|
|
- name: Install Docker on macOS
|
|
|
|
run: |
|
|
|
|
printf " 🛠️ Downloading boot2docker.iso 🛠️ \n\n"
|
|
|
|
mkdir -p ~/.docker/machine/cache/
|
|
|
|
test -f ${{ env.ISO_PATH }} && printf " 🛠️ ${{ env.ISO_PATH }} successfully restored 🛠️ \n\n" || wget "https://github.com/boot2docker/boot2docker/releases/download/v19.03.12/boot2docker.iso" -O ${{ env.ISO_PATH }}
|
|
|
|
printf " 🛠️ Installing Docker from Homebrew 🛠️ \n\n"
|
|
|
|
brew install docker docker-machine
|
|
|
|
printf " 🛠️ Creating Docker VM 🛠️ \n\n"
|
|
|
|
docker-machine create --driver virtualbox --virtualbox-boot2docker-url ${{ env.ISO_PATH }} default
|
|
|
|
docker-machine env default
|
|
|
|
printf " 🛠️ Adding Docker VM info to environment 🛠️ \n\n"
|
|
|
|
eval "$(docker-machine env default)"
|
|
|
|
echo "DOCKER_TLS_VERIFY=$DOCKER_TLS_VERIFY" | tee -a $GITHUB_ENV
|
|
|
|
echo "DOCKER_HOST=$DOCKER_HOST" | tee -a $GITHUB_ENV
|
|
|
|
echo "DOCKER_CERT_PATH=$DOCKER_CERT_PATH" | tee -a $GITHUB_ENV
|
|
|
|
echo "DOCKER_MACHINE_NAME=$DOCKER_MACHINE_NAME" | tee -a $GITHUB_ENV
|
|
|
|
printf " 🛠️ Install Qemu for running containers with different architecture 🛠️ \n\n"
|
|
|
|
docker run --rm --privileged tonistiigi/binfmt --install all
|
|
|
|
printf " 🛠️ Finished installing Docker 🛠️ \n\n"
|
|
|
|
- run: go test -v -timeout 30m -cover ./...
|
2021-03-29 14:55:51 +00:00
|
|
|
env:
|
2021-03-29 05:02:11 +00:00
|
|
|
CGO_ENABLED: 0
|
2020-02-24 23:04:33 +00:00
|
|
|
|
2020-08-30 05:55:22 +00:00
|
|
|
snapshot:
|
2021-05-04 21:57:33 +00:00
|
|
|
name: snapshot
|
2020-08-30 05:55:22 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-03-29 14:55:51 +00:00
|
|
|
- uses: actions/checkout@v2
|
2021-03-30 19:26:25 +00:00
|
|
|
- uses: actions/setup-go@v1
|
|
|
|
with:
|
|
|
|
go-version: 1.16
|
2021-05-02 15:13:30 +00:00
|
|
|
- uses: actions/cache@v2
|
|
|
|
if: ${{ !env.ACT }}
|
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-go-
|
2021-03-29 14:55:51 +00:00
|
|
|
- name: GoReleaser
|
|
|
|
uses: goreleaser/goreleaser-action@v2
|
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
args: release --snapshot --rm-dist
|
|
|
|
- name: Capture Linux Binary
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: act-linux
|
|
|
|
path: dist/act_linux_amd64/act
|
|
|
|
- name: Capture Windows Binary
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: act-windows
|
|
|
|
path: dist/act_windows_amd64/act.exe
|
|
|
|
- name: Capture MacOS Binary
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: act-macos
|
|
|
|
path: dist/act_darwin_amd64/act
|