Skip to content

Commit

Permalink
Update pr-check.yaml
Browse files Browse the repository at this point in the history
Adding back 'Build OpenShift Local extension from container file'
  • Loading branch information
danivilla9 authored Oct 14, 2024
1 parent 9b3d42c commit 8d79416
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/pr-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,17 @@ jobs:
run: |
# allow unprivileged user namespace
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
- name: Build OpenShift Local extension from container file
working-directory: ./crc-extension
run: |
pnpm build
podman build -t local_openshift_local_image ./
CONTAINER_ID=$(podman create localhost/local_openshift_local_image --entrypoint "")
podman export $CONTAINER_ID > /tmp/local_openshift_local_extension.tar
mkdir -p tests/playwright/tests/output/openshift_local-tests-pd/plugins
tar -xf /tmp/local_openshift_local_extension.tar -C tests/playwright/tests/output/openshift_local-tests-pd/plugins/
- name: Run All E2E tests
working-directory: ./crc-extension
env:
Expand Down

0 comments on commit 8d79416

Please sign in to comment.