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

fix(ci): fix a e2e nightly workflow, removing unused secrets functio… #490

Merged
merged 1 commit into from
May 24, 2024
Merged
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
7 changes: 1 addition & 6 deletions .github/workflows/bootc-e2e-nightly-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ on:

jobs:
windows:
name: ${{ matrix.windows-version }} - Debug
name: windows-${{ matrix.windows-version }}-${{ matrix.windows-featurepack }}
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down Expand Up @@ -188,10 +188,7 @@ jobs:
podman logs -f pde2e-podman-run

- name: Run Podman Desktop Playwright E2E tests
env:
PODMANDESKTOP_CI_BOT_TOKEN: ${{ secrets.PODMANDESKTOP_CI_BOT_TOKEN }}
run: |
# echo "PODMANDESKTOP_CI_BOT_TOKEN=${PODMANDESKTOP_CI_BOT_TOKEN}" > secrets.txt
podman run -d --name pde2e-runner-run \
-e TARGET_HOST=$(cat host) \
-e TARGET_HOST_USERNAME=$(cat username) \
Expand All @@ -201,7 +198,6 @@ jobs:
-e OUTPUT_FOLDER=/data \
-e DEBUG=true \
-v $PWD:/data:z \
-v $PWD/secrets.txt:/opt/pde2e-runner/secrets.txt:z \
quay.io/odockal/pde2e-runner:v0.0.1-windows \
pd-e2e/runner.ps1 \
-targetFolder pd-e2e \
Expand All @@ -219,7 +215,6 @@ jobs:
-start ${{ env.PODMAN_START }} \
-userNetworking ${{ env.PODMAN_NETWORKING }} \
-envVars ${{ env.ENV_VARS }} \
# -secretFile secrets.txt
# check logs
podman logs -f pde2e-runner-run

Expand Down