Make this branch point to current DPDK main branch so that we can track API breakage for Travis and GitHub Actions.
In GitHub Actions, debian packaging jobs rely on a packaged version of dpdk and thus are not relevant. Note: this should not be merged to master, intended for dpdk-latest branch only. Signed-off-by: David Marchand <[email protected]> Acked-by: Ilya Maximets <[email protected]> Signed-off-by: Sunil Pai G <[email protected]> Co-authored-by: Sunil Pai G <[email protected]> Signed-off-by: Ian Stokes <[email protected]> --- Note: - the important update in this patch is that the Debian packaging tests are disabled since they are irrelevant in the dpdk-latest branch, - additionnally, this patch is a squash of patches that were updating Travis and GHA configuration separately, --- .github/workflows/build-and-test.yml | 2 ++ .travis.yml | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 58ab85e5d7..7a6ef52ef9 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -15,6 +15,7 @@ jobs: CC: ${{ matrix.compiler }} DPDK: ${{ matrix.dpdk }} DPDK_SHARED: ${{ matrix.dpdk_shared }} + DPDK_VER: refs/heads/main KERNEL: ${{ matrix.kernel }} LIBS: ${{ matrix.libs }} M32: ${{ matrix.m32 }} @@ -198,6 +199,7 @@ jobs: path: config.log build-linux-deb: + if: false env: deb_dependencies: | linux-headers-$(uname -r) build-essential fakeroot devscripts equivs diff --git a/.travis.yml b/.travis.yml index c7aeede06e..cc832b17db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,7 +29,9 @@ addons: before_install: ./.ci/${TRAVIS_OS_NAME}-prepare.sh -before_script: export PATH=$PATH:$HOME/bin +before_script: + - export PATH=$PATH:$HOME/bin + - export DPDK_VER=refs/heads/main matrix: include: -- 2.37.2 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
