Skip to content

Commit

Permalink
Add porchctl e2e test github action
Browse files Browse the repository at this point in the history
  • Loading branch information
efiacor committed Feb 23, 2024
1 parent b0ca16d commit 66af825
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/porchctl-cli-e2e.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Copyright 2024 The Nephio Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

name: Porch CLI End-to-End Tests
on:
push:
paths-ignore:
- "docs/**"
- "release/**"
- "deployments/**"
pull_request:
paths-ignore:
- "docs/**"
- "release/**"
- "deployments/**"

jobs:
tests:
name: Porch CLI End-to-End Tests
runs-on: ubuntu-latest

steps:
- name: Checkout Porch
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '>=1.21.5'
- name: Setup kubectl
uses: azure/setup-kubectl@v3
- name: Install kpt
uses: jaxxstorm/[email protected]
with:
repo: kptdev/kpt
tag: v1.0.0-beta.49
chmod: 0755
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1
with:
cluster_name: kind
- name: Build Images and Deploy porch kpt pkg
run: IMAGE_REPO=porch-kind IMAGE_TAG=${GITHUB_SHA:0:8} make run-in-kind-kpt
- name: porchctl e2e test
run: E2E=1 go test -v -timeout 20m ${GITHUB_WORKSPACE}/test/e2e/cli
- name: Export porch server logs
if: always()
run: |
name=$(kubectl -n porch-system get pod -l app=porch-server -o custom-columns=NAME:.metadata.name --no-headers=true)
kubectl -n porch-system logs $name > porch-e2e-server.log
- name: Archive logs
if: always()
uses: actions/upload-artifact@v4
with:
name: porch-e2e-server.log
path: porch-e2e-server.log
compression-level: 0

0 comments on commit 66af825

Please sign in to comment.