Skip to content

Commit

Permalink
ci(ws): run make test-e2e on GitHub Actions (#11)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
jiridanek and thesuperzapper authored Aug 6, 2024
1 parent 12610f0 commit e4e0aff
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 29 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/controller-tests.yaml
Original file line number Diff line number Diff line change
@@ -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
29 changes: 0 additions & 29 deletions .github/workflows/workspaces-controller_unit-tests.yaml

This file was deleted.

0 comments on commit e4e0aff

Please sign in to comment.