ci(ws): run `make test-e2e` on GitHub Actions (#11)
* run the kubebuilder e2e test Signed-off-by: Jiri Daněk <jdanek@redhat.com> * fixup cluster must be named kind Signed-off-by: Jiri Daněk <jdanek@redhat.com> * fixup, specify kind version Signed-off-by: Jiri Daněk <jdanek@redhat.com> * mathew commit 1 Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * mathew commit 2 Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> --------- Signed-off-by: Jiri Daněk <jdanek@redhat.com> Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> Co-authored-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com>
This commit is contained in:
parent
12610f06e9
commit
e4e0aff6d6
|
@ -0,0 +1,52 @@
|
|||
name: Controller - Tests
|
||||
|
||||
permissions: {}
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main", "notebooks-v2", "v*-branch" ]
|
||||
pull_request:
|
||||
paths: [ "workspaces/controller/**" ]
|
||||
branches: [ "main", "notebooks-v2", "v*-branch" ]
|
||||
|
||||
jobs:
|
||||
unit-tests:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version-file: workspaces/controller/go.mod
|
||||
check-latest: true
|
||||
cache-dependency-path: workspaces/controller/go.sum
|
||||
|
||||
- name: Run unit tests
|
||||
working-directory: workspaces/controller
|
||||
run: make test
|
||||
|
||||
e2e-tests:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Kind
|
||||
uses: helm/kind-action@v1
|
||||
with:
|
||||
version: v0.23.0
|
||||
node_image: kindest/node:v1.25.16@sha256:5da57dfc290ac3599e775e63b8b6c49c0c85d3fec771cd7d55b45fae14b38d3b
|
||||
cluster_name: kind
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version-file: workspaces/controller/go.mod
|
||||
check-latest: true
|
||||
cache-dependency-path: workspaces/controller/go.sum
|
||||
|
||||
- name: Run e2e tests
|
||||
env:
|
||||
KUBEFLOW_TEST_PROMPT: "false"
|
||||
working-directory: workspaces/controller
|
||||
run: make test-e2e
|
|
@ -1,29 +0,0 @@
|
|||
name: "workspaces/controller: unit-tests"
|
||||
|
||||
permissions: {}
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main", "notebooks-v2", "v*-branch" ]
|
||||
pull_request:
|
||||
paths: [ "workspaces/controller/**" ]
|
||||
branches: [ "main", "notebooks-v2", "v*-branch" ]
|
||||
|
||||
jobs:
|
||||
|
||||
"unit-tests":
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version-file: workspaces/controller/go.mod
|
||||
check-latest: true
|
||||
cache-dependency-path: workspaces/controller/go.sum
|
||||
|
||||
- name: Test
|
||||
run: make test
|
||||
working-directory: workspaces/controller
|
Loading…
Reference in New Issue