2019-08-28 22:11:12 +02:00
|
|
|
name: main
|
|
|
|
on:
|
2023-02-02 13:59:08 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- cluster
|
|
|
|
paths-ignore:
|
|
|
|
- "docs/**"
|
|
|
|
- "**.md"
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- cluster
|
|
|
|
paths-ignore:
|
|
|
|
- "docs/**"
|
|
|
|
- "**.md"
|
2022-04-17 01:56:39 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2019-08-28 22:11:12 +02:00
|
|
|
jobs:
|
2023-02-02 13:59:08 +01:00
|
|
|
lint:
|
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Code checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@v3
|
|
|
|
with:
|
|
|
|
go-version: 1.19.5
|
|
|
|
check-latest: true
|
|
|
|
cache: true
|
|
|
|
|
|
|
|
- name: Dependencies
|
|
|
|
run: |
|
|
|
|
make install-golangci-lint
|
|
|
|
make check-all
|
|
|
|
git diff --exit-code
|
|
|
|
|
|
|
|
test:
|
|
|
|
needs: lint
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
scenario: ["test-full", "test-pure", "test-full-386"]
|
|
|
|
name: test
|
2019-08-28 22:11:12 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-01-18 20:42:27 +01:00
|
|
|
- name: Code checkout
|
|
|
|
uses: actions/checkout@v3
|
2023-02-02 13:59:08 +01:00
|
|
|
|
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@v3
|
|
|
|
with:
|
|
|
|
go-version: 1.19.5
|
|
|
|
check-latest: true
|
|
|
|
cache: true
|
|
|
|
|
|
|
|
- name: run tests
|
|
|
|
run: |
|
|
|
|
make ${{ matrix.scenario}}
|
|
|
|
|
|
|
|
- name: Publish coverage
|
|
|
|
uses: codecov/codecov-action@v3
|
2023-01-19 08:34:20 +01:00
|
|
|
with:
|
2023-02-02 13:59:08 +01:00
|
|
|
file: ./coverage.txt
|
|
|
|
|
|
|
|
build:
|
|
|
|
needs: test
|
|
|
|
name: build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Code checkout
|
|
|
|
uses: actions/checkout@v3
|
2023-01-18 20:42:27 +01:00
|
|
|
|
2019-08-28 22:11:12 +02:00
|
|
|
- name: Setup Go
|
2023-01-18 20:42:27 +01:00
|
|
|
uses: actions/setup-go@v3
|
2019-08-28 22:11:12 +02:00
|
|
|
with:
|
2023-01-11 03:42:02 +01:00
|
|
|
go-version: 1.19.5
|
2023-01-18 20:42:27 +01:00
|
|
|
check-latest: true
|
|
|
|
cache: true
|
|
|
|
|
2019-08-28 22:11:12 +02:00
|
|
|
- name: Build
|
|
|
|
run: |
|
2023-01-18 20:42:27 +01:00
|
|
|
make vmcluster-crossbuild
|