Skip to content

Commit e2ef670

Browse files
committed
Change merge queue workflow
1 parent c068ee8 commit e2ef670

6 files changed

+68
-79
lines changed

.github/workflows/presubmit.yaml

-60
This file was deleted.

.github/workflows/e2e-test.yaml .github/workflows/validate-merge-queue-e2e-test.yaml

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
1-
name: e2e-test
1+
name: Validate code in the merge queue with e2e-test
22
permissions:
33
id-token: write
44
contents: read
55
on:
6-
push:
7-
branches:
8-
- main
9-
workflow_dispatch:
10-
workflow_call:
6+
merge_group:
117
jobs:
12-
e2e-test:
8+
validate:
139
runs-on: ubuntu-latest
1410
# Prevent concurrent execution as we only have one cluster at the moment.
1511
concurrency:

.github/workflows/validate-merge-queue.yaml

-6
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Validate pull request with presubmit before putting into queue
2+
permissions:
3+
id-token: write
4+
contents: read
5+
on:
6+
pull_request:
7+
jobs:
8+
validate:
9+
name: golangci-lint
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- run: sed -En 's/^go[[:space:]]+([[:digit:].]+)$/GO_VERSION=\1/p' go.mod >> $GITHUB_ENV
14+
- uses: actions/setup-go@v4
15+
with:
16+
go-version: ${{ env.GO_VERSION }}
17+
cache: false
18+
- name: golangci-lint
19+
uses: golangci/golangci-lint-action@v3
20+
with:
21+
version: v1.63.4
22+
args: --verbose --timeout 30m
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Validate pull request with presubmit before putting into queue
2+
on:
3+
pull_request:
4+
jobs:
5+
validate:
6+
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
k8sVersion: ["1.31.1"]
10+
env:
11+
K8S_VERSION: ${{ matrix.k8sVersion }}
12+
steps:
13+
- uses: actions/checkout@v3
14+
- run: sed -En 's/^go[[:space:]]+([[:digit:].]+)$/GO_VERSION=\1/p' go.mod >> $GITHUB_ENV
15+
- uses: actions/setup-python@v4
16+
with:
17+
python-version: '3.11'
18+
cache: 'pip'
19+
- run: pip install -r requirements.txt
20+
- uses: actions/setup-go@v3
21+
with:
22+
go-version: ${{ env.GO_VERSION }}
23+
check-latest: true
24+
- uses: actions/cache@v3
25+
with:
26+
path: |
27+
~/.cache/go-build
28+
~/go/pkg/mod
29+
~/go/bin/
30+
~/.kubebuilder/bin
31+
key: ${{ runner.os }}-go-cache-${{ hashFiles('**/go.sum') }}
32+
- run: go install github.com/golang/mock/[email protected]
33+
- run: go install sigs.k8s.io/kustomize/kustomize/[email protected]
34+
- run: go install sigs.k8s.io/controller-runtime/tools/[email protected]
35+
- run: go install github.com/mattn/goveralls@b031368
36+
- run: make manifest
37+
- run: make vet
38+
- run: make test
39+
- run: make docs
40+
- name: Send coverage
41+
env:
42+
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43+
run: goveralls -coverprofile=coverage.out -service=github

.github/workflows/validate-pull-request.yaml

-6
This file was deleted.

0 commit comments

Comments
 (0)