Bump gopkg.in/yaml.v3 from 3.0.0-20210107192922-496545a6307b to 3.0.0 #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Workflow | |
on: | |
# Run this workflow every time a new commit pushed to upstream/fork repository. | |
# Run workflow on fork repository will help contributors find and resolve issues before sending a PR. | |
push: | |
pull_request: | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
- name: install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18.3 | |
- name: vendor | |
run: hack/verify-vendor.sh | |
- name: lint | |
run: hack/verify-staticcheck.sh | |
- name: import alias | |
run: hack/verify-import-aliases.sh | |
codegen: | |
name: codegen | |
runs-on: ubuntu-18.04 | |
env: | |
GOPATH: ${{ github.workspace }} | |
defaults: | |
run: | |
working-directory: ${{ env.GOPATH }}/src/github.com/karmada-io/karmada | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
with: | |
path: ${{ env.GOPATH }}/src/github.com/karmada-io/karmada | |
- name: install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18.3 | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
- name: verify codegen | |
run: hack/verify-codegen.sh | |
- name: verify crdgen | |
run: hack/verify-crdgen.sh | |
- name: verify protobuf | |
run: hack/verify-estimator-protobuf.sh | |
- name: verify swagger docs | |
run: hack/verify-swagger-docs.sh | |
- name: verify lifted docs | |
run: hack/verify-lifted.sh | |
build: | |
name: compile | |
needs: codegen # rely on codegen successful completion | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
with: | |
# Number of commits to fetch. 0 indicates all history for all branches and tags. | |
# We need to guess version via git tags. | |
fetch-depth: 0 | |
- name: install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18.3 | |
- name: compile | |
run: make all | |
test: | |
name: unit test | |
needs: build | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
- name: install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18.3 | |
- name: make test | |
run: make test | |
e2e: | |
name: e2e test | |
needs: build | |
runs-on: ubuntu-18.04 | |
strategy: | |
matrix: | |
k8s: [ v1.21.10, v1.22.7, v1.23.4, v1.24.2 ] | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
with: | |
# Number of commits to fetch. 0 indicates all history for all branches and tags. | |
# We need to guess version via git tags. | |
fetch-depth: 0 | |
- name: install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18.3 | |
- name: setup e2e test environment | |
run: | | |
export CLUSTER_VERSION=kindest/node:${{ matrix.k8s }} | |
hack/local-up-karmada.sh | |
- name: run e2e | |
run: | | |
export ARTIFACTS_PATH=${{ github.workspace }}/karmada-e2e-logs/${{ matrix.k8s }}/ | |
hack/run-e2e.sh | |
- name: upload logs | |
if: always() | |
uses: actions/upload-artifact@v2 | |
with: | |
name: karmada_e2e_log_${{ matrix.k8s }} | |
path: ${{ github.workspace }}/karmada-e2e-logs/${{ matrix.k8s }}/ |