Manual Pull Request test #46
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
# Repo owner must review the PR properly before trigger this workflow manually. | |
name: Manual Pull Request test | |
on: | |
workflow_dispatch: | |
inputs: | |
pull_request_number: | |
description: "PR number we want to run tests on" | |
required: true | |
type: string | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
integration-test: | |
if: github.event.inputs.pull_request_number != '' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout latest commit in the PR | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # refs/tags/v4.1.7 | |
with: | |
ref: "refs/pull/${{ github.event.inputs.pull_request_number }}/merge" | |
- name: Set up Docker QEMU | |
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # refs/tags/v3.0.0 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # refs/tags/v3.3.0 | |
- name: Set up Go | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # refs/tags/v5.0.1 | |
with: | |
go-version: "1.22" | |
- name: Set up tools | |
run: | | |
# Install ginkgo version from go.mod | |
go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo | |
curl --silent --location "https://github.com/weaveworks/eksctl/releases/latest/download/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp | |
sudo mv /tmp/eksctl /usr/local/bin/ | |
- name: Set up AWS credentials | |
uses: aws-actions/configure-aws-credentials@5579c002bb4778aa43395ef1df492868a9a1c83f # refs/tags/v4.0.2 | |
with: | |
role-to-assume: ${{ secrets.OSS_TEST_ROLE_ARN }} | |
role-duration-seconds: 14400 # 4 hours | |
aws-region: ${{ secrets.AWS_DEFAULT_REGION }} | |
- name: Run e2e tests | |
env: | |
DISABLE_PROMPT: true | |
ROLE_CREATE: false | |
ROLE_ARN: ${{ secrets.EKS_CLUSTER_ROLE_ARN }} | |
RUN_CONFORMANCE: true | |
run: | | |
./scripts/run-integration-tests.sh |