kubekey/.github/workflows/ci.yml
Leo Li 7a7bfd9aa2 modify the github workflow and build using go 1.17
Signed-off-by: Leo Li <jacksama@foxmail.com>
2021-12-23 16:03:58 +08:00

56 lines
1.2 KiB
YAML

name: CI
on:
push:
branches:
- 'master'
- 'release*'
tags:
- 'v*'
pull_request:
branches:
- 'master'
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Set up Go 1.17
uses: actions/setup-go@v2
with:
go-version: 1.17
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Downloading go dependencies
run: go mod tidy
# If there are any diffs from goimports or go mod tidy, fail.
- name: Verify no changes from goimports and go mod tidy.
run: |
if [ -n "$(git status --porcelain)" ]; then
echo 'To fix this check, run "go mod tidy"'
git status # Show the files that failed to pass the check.
exit 1
fi
- name: Build operator manager
run: go build -v -o output/manager ./main.go
- name: Build command-line tool
run: go build -v -o output/kk ./cmd/main.go
- uses: actions/upload-artifact@v2
if: github.event_name == 'push'
with:
name: kk
path: output/kk