Forks may not have branch-22.03 in them. Even if they do, the branch may not be up to date. Use the upstream one instead.
Signed-off-by: Ilya Maximets <[email protected]> --- .github/workflows/ovn-fake-multinode-tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ovn-fake-multinode-tests.yml b/.github/workflows/ovn-fake-multinode-tests.yml index 65783b7ae..795dafc22 100644 --- a/.github/workflows/ovn-fake-multinode-tests.yml +++ b/.github/workflows/ovn-fake-multinode-tests.yml @@ -18,8 +18,8 @@ jobs: strategy: matrix: cfg: - - { branch: "${{ github.ref_name }}" } - - { branch: "branch-22.03" } + - { repo: "${{ github.repository }}", branch: "${{ github.ref_name }}" } + - { repo: ovn-org/ovn, branch: "branch-22.03" } env: RUNC_CMD: podman OS_IMAGE: "fedora:37" @@ -43,11 +43,12 @@ jobs: repository: 'openvswitch/ovs' ref: 'main' - - name: Check out ovn ${{ matrix.cfg.branch }} + - name: Check out ovn ${{ matrix.cfg.branch }} of ${{ matrix.cfg.repo }} uses: actions/checkout@v4 with: path: 'ovn-fake-multinode/ovn' submodules: recursive + repository: ${{ matrix.cfg.repo }} ref: ${{ matrix.cfg.branch }} - name: Install dependencies -- 2.45.2 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
