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:
Jiri Daněk 2024-08-06 03:00:39 +02:00 committed by GitHub
parent 12610f06e9
commit e4e0aff6d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 52 additions and 29 deletions

52
.github/workflows/controller-tests.yaml vendored Normal file
View File

@ -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

View File

@ -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