Skip to content
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
12 changes: 12 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,15 @@ jobs:
uses: omec-project/.github/.github/workflows/scorecard-analysis.yml@76c248f1621bfe102956c558ea8cecfe5df143bf # v0.0.3
with:
branch_name: ${{ github.ref }}

e2e-tests:
if: github.event_name == 'pull_request'
permissions:
contents: read
pull-requests: write
checks: write
id-token: write
attestations: write
uses: omec-project/.github/.github/workflows/e2e-test.yml@76c248f1621bfe102956c558ea8cecfe5df143bf # v0.0.3
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this action (e2e-test.yml) should NOT work for the UPF because keep in mind that the UPF repo creates 2 images (one for BESS and one for the PFCP agent) and you need to accordingly use these images in the specific containers of the UPF pod (5 containers in total). However, the e2e-test.yml action is meant for the control plane where there is a single container per pod

with:
branch_name: ${{ github.ref }}
Loading