Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a github workflow to enable e2e for PR blocker #117

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .github/workflows/e2e-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: E2E tests (PR Blocker)
on:
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
e2e-tests:
runs-on: ubuntu-latest
steps:
- name: Free Disk Space
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
docker-images: false
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Build e2e image
run: make docker-build-e2e
- uses: actions/[email protected]
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-test-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-test-go-${{ hashFiles('**/go.sum') }}
- uses: engineerd/[email protected]
with:
version: "v0.22.0"
skipClusterCreation: "true"
- name: Run E2E tests
run: make GINKGO_FOCUS="\\[PR-Blocking\\]" test-e2e
- name: Archive artifacts
if: always()
uses: actions/[email protected]
with:
name: e2e-artifacts
path: _artifacts
if-no-files-found: ignore
Loading