chore: disable k8s/ocp e2e jobs that require missing self-hosted runners #144
This file contains hidden or 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.22 | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.22.x | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v4 | |
| - 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.22 | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.22.x | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v4 | |
| - name: test pkg | |
| run: make test-pkg | |
| - name: test cmd | |
| run: make test-cmd | |
| - name: test api | |
| run: make test-api | |
| - name: test controllers on opensfhit | |
| run: CLUSTER_TYPE=openshift make test-controllers | |
| - name: test controllers on kubernetes | |
| run: CLUSTER_TYPE=kubernetes make test-controllers | |
| - name: test bindata/scripts | |
| run: make test-bindata-scripts | |
| modules: | |
| name: check go modules | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go 1.22 | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.22.x | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v4 | |
| - name: check go modules are up to date | |
| run: make check-deps | |
| manifests: | |
| name: check manifests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: check if the config/ folder is up to date | |
| run: make check-manifests | |
| golangci: | |
| name: Golangci-lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go 1.22 | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.22.x | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v4 | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v7 | |
| with: | |
| version: v2.10.1 | |
| shellcheck: | |
| name: Shellcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run ShellCheck | |
| uses: ludeeus/action-shellcheck@master | |
| with: | |
| severity: error | |
| test-coverage: | |
| name: test-coverage | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go 1.22 | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.22.x | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v4 | |
| - name: test pkg | |
| run: make test-pkg | |
| - name: test cmd | |
| run: make test-cmd | |
| - name: test api | |
| run: make test-api | |
| - 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: | |
| if: false # disabled: no self-hosted [sriov] runner in this fork | |
| name: k8s | |
| needs: [ | |
| build, | |
| test, | |
| golangci, | |
| ] | |
| runs-on: [ sriov ] | |
| env: | |
| TEST_REPORT_PATH: k8s-artifacts | |
| steps: | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v4 | |
| - name: Set up Go 1.22 | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.22.x | |
| - name: run test | |
| run: make test-e2e-conformance-virtual-k8s-cluster-ci | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: ${{ env.TEST_REPORT_PATH }} | |
| path: ./${{ env.TEST_REPORT_PATH }} | |
| - name: remove virtual cluster | |
| if: always() | |
| run: | | |
| kcli delete cluster "$CLUSTER_NAME" -y | |
| kcli delete network "$CLUSTER_NAME" -y | |
| virtual-ocp: | |
| if: false # disabled: no self-hosted [ocp] runner in this fork | |
| name: ocp | |
| needs: [ | |
| build, | |
| test, | |
| golangci, | |
| ] | |
| runs-on: [ ocp ] | |
| env: | |
| TEST_REPORT_PATH: ocp-artifacts | |
| steps: | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v4 | |
| - name: Set up Go 1.22 | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.22.x | |
| - name: run test | |
| run: make test-e2e-conformance-virtual-ocp-cluster-ci | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: ${{ env.TEST_REPORT_PATH }} | |
| path: ./${{ env.TEST_REPORT_PATH }} | |
| - name: remove virtual cluster | |
| if: always() | |
| run: | | |
| kcli delete cluster "$CLUSTER_NAME" -y | |
| kcli delete network "$CLUSTER_NAME" -y |