116 lines
3.5 KiB
YAML
116 lines
3.5 KiB
YAML
name: Tests E2E
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- main
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- 'website/**'
|
|
- 'assets/**'
|
|
- 'backup/**'
|
|
- '*.md'
|
|
pull_request:
|
|
types: [opened, synchronize, ready_for_review, reopened]
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- 'website/**'
|
|
- 'assets/**'
|
|
- 'backup/**'
|
|
- '*.md'
|
|
|
|
jobs:
|
|
create-e2e-list:
|
|
name: E2E Create tests list
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
matrix: ${{ steps.matrix.outputs.matrix }}
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
- id: matrix
|
|
run: |
|
|
script=$(./test/make_matrix_ginkgo.sh e2e)
|
|
echo "matrix=${script}" >> $GITHUB_OUTPUT
|
|
|
|
verify-code:
|
|
name: E2E Verify code before tests
|
|
runs-on: ubuntu-latest
|
|
needs: [create-e2e-list]
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
|
|
- name: Set up env vars
|
|
run: |
|
|
echo "GO111MODULE=on" >> $GITHUB_ENV
|
|
echo "GO_VERSION=v$(sed -n 's/GO_VERSION=//p' config.base.env | tr -d '\n' | tr -d '"')" >> $GITHUB_ENV
|
|
echo "GOPATH=/home/runner/go" >> $GITHUB_ENV
|
|
|
|
- name: Prepare go environment
|
|
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
|
|
with:
|
|
go-version: ${{ env.GO_VERSION }}
|
|
|
|
- name: Ensure Golang runtime dependencies
|
|
run: make go-dependencies
|
|
|
|
- name: Verify code formatting
|
|
run: make verify
|
|
|
|
run-e2e-tests:
|
|
runs-on: ubuntu-latest
|
|
needs: [create-e2e-list, verify-code]
|
|
if: github.event.pull_request.draft == false
|
|
name: E2E ${{ matrix.test }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix: ${{ fromJSON(needs.create-e2e-list.outputs.matrix) }}
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
|
|
- name: Set up env vars
|
|
run: |
|
|
echo "GO111MODULE=on" >> $GITHUB_ENV
|
|
echo "GO_VERSION=v$(sed -n 's/GO_VERSION=//p' config.base.env | tr -d '\n' | tr -d '"')" >> $GITHUB_ENV
|
|
echo "KIND_CLUSTER_NAME=$(sed -n 's/KIND_CLUSTER_NAME=//p' config.base.env | tr -d '\n' | tr -d '"')" >> $GITHUB_ENV
|
|
echo "GOPATH=/home/runner/go" >> $GITHUB_ENV
|
|
|
|
- name: Prepare go environment
|
|
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
|
|
with:
|
|
go-version: ${{ env.GO_VERSION }}
|
|
|
|
- name: Ensure Golang runtime dependencies
|
|
run: make go-dependencies
|
|
|
|
- name: Kind setup
|
|
uses: helm/kind-action@a1b0e391336a6ee6713a0583f8c6240d70863de3 # v1.12.0
|
|
with:
|
|
cluster_name: ${{env.KIND_CLUSTER_NAME}}
|
|
config: kind-cluster.yaml
|
|
|
|
- name: Prepare environment for e2e
|
|
run: |
|
|
sudo apt-get update && sudo apt-get install -y socat
|
|
sudo mkdir -p $HOME/.kube
|
|
sudo chown -R $USER $HOME/.kube
|
|
|
|
- name: Jenkins Operator - e2e Chart tests
|
|
env:
|
|
TNAME: ${{ matrix.test }}
|
|
TFILE: ${{ matrix.file }}
|
|
TLINE: ${{ matrix.line }}
|
|
run: |
|
|
git reset --hard
|
|
printf "\n \n > Running test: %s from file: $s line: %s\n" "${TNAME}" "${TFILE}" "${TLINE}"
|
|
make e2e E2E_TEST_ARGS='-ginkgo.v -ginkgo.focus="${TNAME}"'
|
|
|
|
- name: Debug
|
|
if: failure()
|
|
shell: bash
|
|
continue-on-error: true
|
|
run: |
|
|
randomns=$(kubectl get ns| grep -i 'ns[0-9]\+' |cut -d ' ' -f 1)
|
|
kubectl get pods -n ${randomns}
|
|
kubectl get events -n ${randomns}
|