Verify status changes on managed interfaces #130
Workflow file for this run
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: Test SR-IOV Operator | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.20 | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.20.x | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: fmt | |
run: IS_CONTAINER=yes make fmt | |
- name: Build | |
run: make all | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.20 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.20.x | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: test pkg | |
run: make test-pkg | |
- name: test controllers on opensfhit | |
run: CLUSTER_TYPE=openshift make test-controllers | |
- name: test bindata/scripts | |
run: make test-bindata-scripts | |
golangci: | |
name: Golangci-lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.20 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.20.x | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. | |
version: v1.51.0 | |
test-coverage: | |
name: test-coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.20 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.20.x | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: test pkg | |
run: make test-pkg | |
- name: test controllers on opensfhit | |
run: CLUSTER_TYPE=openshift make test-controllers | |
- name: merge test coverage | |
run: make merge-test-coverage | |
- name: Coveralls | |
uses: coverallsapp/github-action@1.1.3 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: lcov.out | |
virtual-k8s-cluster: | |
name: k8s | |
needs: [ | |
build, | |
test, | |
golangci, | |
] | |
runs-on: [ sriov ] | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Set up Go 1.20 | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.20.x | |
- name: run test | |
run: make test-e2e-conformance-virtual-k8s-cluster-ci | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: k8s-artifact | |
path: ./k8s-artifacts | |
- name: remove virtual cluster | |
if: always() | |
run: | | |
kcli delete cluster $CLUSTER_NAME -y | |
kcli delete network $CLUSTER_NAME -y | |
virtual-ocp: | |
name: ocp | |
needs: [ | |
build, | |
test, | |
golangci, | |
] | |
runs-on: [ ocp ] | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Set up Go 1.20 | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.20.x | |
- name: run test | |
run: make test-e2e-conformance-virtual-ocp-cluster-ci | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: ocp-artifact | |
path: ./ocp-artifacts | |
- name: remove virtual cluster | |
if: always() | |
run: | | |
kcli delete cluster $CLUSTER_NAME -y | |
kcli delete network $CLUSTER_NAME -y |