Skip to content

Refactor templating e2e test to not depend on CLI output #15653

Refactor templating e2e test to not depend on CLI output

Refactor templating e2e test to not depend on CLI output #15653

Workflow file for this run

name: Test External Git & Registry
on:
pull_request:
paths-ignore:
- "**.md"
- "**.jpg"
- "**.png"
- "**.gif"
- "**.svg"
- "adr/**"
- "docs/**"
- "CODEOWNERS"
merge_group:
paths-ignore:
- "**.md"
- "**.jpg"
- "**.png"
- "**.gif"
- "**.svg"
- "adr/**"
- "docs/**"
- "CODEOWNERS"
permissions:
contents: read
# Abort prior jobs in the same workflow / PR
concurrency:
group: e2e-external-${{ github.ref }}
cancel-in-progress: true
jobs:
validate-external:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup golang
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version-file: go.mod
- name: Build binary and zarf packages
uses: ./.github/actions/packages
with:
init-package: "false"
build-examples: "false"
- name: Setup k3d
uses: ./.github/actions/k3d
- name: Cleanup files
uses: ./.github/actions/cleanup-files
- name: Run external service test
run: make test-external
- name: get cluster info
uses: ./.github/actions/debug-cluster
if: always()
- name: Save logs
if: always()
uses: ./.github/actions/save-logs