-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
95849ea
commit 0f44ea9
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: "[helm-locker] CI-e2e" | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'go.mod' | ||
- 'charts/helm-locker*/**' | ||
- 'crds/helm-locker/**' | ||
- 'package/Dockerfile-helm-locker' | ||
- 'cmd/helm-locker/**' | ||
- 'pkg/helm-locker/**' | ||
|
||
env: | ||
CLUSTER_NAME : e2e-ci-helm-locker | ||
K3S_VERSION : v1.27.9-k3s1 | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
arch: | ||
- x64 | ||
- arm64 | ||
runs-on : runs-on,image=ubuntu22-full-${{ matrix.arch }},runner=4cpu-linux-${{ matrix.arch }},run-id=${{ github.run_id }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name : Set up Go | ||
uses : actions/setup-go@v5 | ||
with: | ||
go-version: 1.22 | ||
- uses: azure/setup-kubectl@v3 | ||
- uses: azure/setup-helm@v3 | ||
- name: build | ||
run: BUILD_TARGET=helm-locker make build | ||
- name : Install k3d | ||
run : ./.github/workflows/e2e/scripts/install-k3d.sh | ||
- name : Setup k3d cluster | ||
run : K3S_VERSION=${{ env.K3S_VERSION }} ./.github/workflows/e2e/scripts/setup-cluster.sh | ||
# temporary hack to run the helm-locker controller in the k3d cluster | ||
- name : run helm-locker | ||
run : | | ||
kubectl create ns cattle-helm-system | ||
./bin/helm-locker & | ||
- name : run e2e tests | ||
run: | | ||
k3d kubeconfig get ${{ env.CLUSTER_NAME }} > kubeconfig.yaml | ||
export KUBECONFIG=$(pwd)/kubeconfig.yaml | ||
cd tests && KUBECONFIG=$KUBECONFIG go test -v -race -timeout 30m ./... |