-
Notifications
You must be signed in to change notification settings - Fork 20
139 lines (116 loc) · 4.19 KB
/
pr-check.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
name: PR Check Test
on:
pull_request_target:
types: [opened, synchronize, reopened, labeled, unlabeled]
jobs:
check-org-membership:
runs-on: ubuntu-latest
steps:
- name: Check if PR author is a member of the organization
run: |
ORG="${{ github.repository_owner }}"
PR_AUTHOR=$(jq --raw-output .pull_request.user.login $GITHUB_EVENT_PATH)
if gh api "/orgs/$ORG/members/$PR_AUTHOR"; then
echo "PR author is a member of $ORG GitHub organization, running tests."
exit 0
fi
echo "PR author is NOT a member of $ORG GitHub organization, skipping further checks."
exit 1
env:
GITHUB_TOKEN: ${{ secrets.HAC_TEST_GH_TOKEN }}
e2e-test:
needs: check-org-membership
runs-on: ubuntu-latest
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false
docker-images: false
# konflux-ci is cloned to /home/runner/work/konflux-ui/konflux-ui
# as it have to be at home folder to use helm/kind-action@v1 action
- name: Checkout Repository
uses: actions/checkout@v4
with:
repository: 'konflux-ci/konflux-ci'
ref: 'main'
- name: Disable AppArmor
# works around a change in ubuntu 24.04 that restricts Linux namespace access
# for unprivileged users
run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1
with:
config: kind-config.yaml
- name: Show version information
run: |
kubectl version
kind version
- name: List namespaces
run: |
kubectl get namespace
- name: Deploying Dependencies
run: |
./deploy-deps.sh
- name: List namespaces
run: |
kubectl get namespace
- name: Wait for the dependencies to be ready
run: |
./wait-for-all.sh
- name: WORKAROUND - Set up tkn cli for the following task
uses: tektoncd/actions/setup-tektoncd-cli@main
with:
version: latest
- name: WORKAROUND - Remove clair-scan task from docker-pipeline
run: |
./test/e2e/customize-docker-pipeline.sh
- name: Deploying Konflux
run: |
./deploy-konflux.sh
- name: List namespaces
run: |
kubectl get namespace
- name: Deploy test resources
run: |
./deploy-test-resources.sh
- name: Prepare resources for E2E tests
# Sets secrets, deploys image controller and setup smee.
env:
APP_ID: ${{ secrets.GH_APP_ID }}
APP_PRIVATE_KEY: ${{ secrets.GH_APP_PRIVATE_KEY }}
APP_WEBHOOK_SECRET: ${{ secrets.GH_APP_WEBHOOK_SECRET }}
QUAY_ORG: ${{ secrets.QUAY_TEST_ORG }}
QUAY_TOKEN: ${{ secrets.QUAY_TOKEN_TEST }}
SMEE_CHANNEL: ${{ secrets.SMEE_URL }}
run: |
./test/e2e/prepare-e2e.sh
# konflux-ui repo is cloned to /home/runner/work/konflux-ui/konflux-ui/konflux-ui
- name: Checkout Konflux-UI Repository
uses: actions/checkout@v4
with:
ref: "${{ github.event.pull_request.head.sha }}"
path: 'konflux-ui'
- name: Install Konflux-UI and run tests
env:
CYPRESS_GH_TOKEN: ${{ secrets.HAC_TEST_GH_TOKEN }}
TARGET_BRANCH: ${{ github.base_ref }}
PR_NUMBER: ${{ github.event.number }}
HEAD_SHA: "${{ github.event.pull_request.head.sha }}"
CYPRESS_USERNAME: "${{ secrets.CYPRESS_USERNAME }}"
CYPRESS_PASSWORD: "${{ secrets.CYPRESS_PASSWORD }}"
run: |
./konflux-ui/pr_check.sh
- name: Generate error logs
if: ${{ !cancelled() }}
run: |
./generate-err-logs.sh
cp -r konflux-ui/artifacts logs
- name: Archive logs
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: logs
path: logs