Skip to content

Commit

Permalink
Change injector version and add minikube test
Browse files Browse the repository at this point in the history
  • Loading branch information
Racer159 committed Feb 10, 2023
1 parent 8128d59 commit 6d09ef3
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
45 changes: 45 additions & 0 deletions .github/workflows/test-minikube.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Test Minikube (Docker) Cluster
on:
pull_request:
paths-ignore:
- "**.md"
- "**.jpg"
- "**.png"
- "**.gif"
- "**.svg"
- "adr/**"
- "docs/**"
- "package.json"
- "package-lock.json"
- "CODEOWNERS"

# Abort prior jobs in the same workflow / PR
concurrency:
group: e2e-minikube-${{ github.ref }}
cancel-in-progress: true

jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup golang
uses: ./.github/actions/golang

- name: Setup NodeJS
uses: ./.github/actions/node

- name: Build binary and zarf packages
uses: ./.github/actions/packages

- name: Setup Minikube
run: minikube start --driver=docker

- name: Run tests
run: make test-e2e ARCH=amd64

- name: Save logs
if: always()
uses: ./.github/actions/save-logs
2 changes: 1 addition & 1 deletion zarf-config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
agent_image = 'agent:local'

# Tag for the zarf injector binary to use
injector_version = 'pr-948-e699899'
injector_version = '2023-02-09'

0 comments on commit 6d09ef3

Please sign in to comment.