|
| 1 | +name: Weekly_E2E |
| 2 | +on: |
| 3 | + schedule: |
| 4 | + - cron: "37 4 * * 0" |
| 5 | + pull_request: |
| 6 | + paths: |
| 7 | + - '**weekly_e2e.yml' |
| 8 | + push: |
| 9 | + branches: |
| 10 | + - master |
| 11 | + paths: |
| 12 | + - '**weekly_e2e.yml' |
| 13 | +jobs: |
| 14 | + |
| 15 | + vpp_latest: |
| 16 | + name: E2E_vpp_latest |
| 17 | + runs-on: hugepage-runner |
| 18 | + steps: |
| 19 | + - name: Set up Go |
| 20 | + uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 |
| 21 | + with: |
| 22 | + go-version: 1.20.1 |
| 23 | + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 |
| 24 | + - name: vpp_ligato_latest_container |
| 25 | + run: source ./ci/ci.sh && vpp_ligato_latest_container |
| 26 | + - name: install_go_kubectl_kind |
| 27 | + run: source ./ci/ci.sh && install_go_kubectl_kind |
| 28 | + - name: create_kind_cluster |
| 29 | + run: source ./ci/ci.sh && create_kind_cluster |
| 30 | + - name: deploy_multus |
| 31 | + run: source ./ci/ci.sh && deploy_multus |
| 32 | + - name: vpp_e2e_test |
| 33 | + run: source ./ci/ci.sh && vpp_e2e_test |
| 34 | + |
| 35 | + kind_multiversion: |
| 36 | + name: E2E_kind_multiversion-${{ matrix.kubernetes_version }} |
| 37 | + runs-on: hugepage-runner |
| 38 | + strategy: |
| 39 | + matrix: |
| 40 | + kubernetes_version: [v1.28.0,v1.27.0,v1.26.0] |
| 41 | + steps: |
| 42 | + - name: Set up Go |
| 43 | + uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 |
| 44 | + with: |
| 45 | + go-version: 1.20.1 |
| 46 | + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 |
| 47 | + - name: install_go_kubectl_kind |
| 48 | + run: source ./ci/ci.sh && install_go_kubectl_kind |
| 49 | + - name: create_kind_cluster |
| 50 | + run: source ./ci/ci.sh && create_kind_cluster -v ${{ matrix.kubernetes_version }} |
| 51 | + - name: deploy_multus |
| 52 | + run: source ./ci/ci.sh && deploy_multus |
| 53 | + - name: vpp_e2e_test |
| 54 | + run: source ./ci/ci.sh && vpp_e2e_test |
| 55 | + - name: build_ovs_container |
| 56 | + run: source ./ci/ci.sh && build_ovs_container |
| 57 | + - name: build_test-pmd_container |
| 58 | + run: source ./ci/ci.sh && build_testpmd_container |
| 59 | + - name: ovs_e2e_test |
| 60 | + run: source ./ci/ci.sh && ovs_e2e_test |
0 commit comments