diff mbox series

[ovs-dev,branch-20.12,3/4] ci: fix build: pin OVS to version 2.17

Message ID 20230110220832.3527525-3-odivlad@gmail.com
State Accepted
Headers show
Series [ovs-dev,branch-20.12,1/4] ci: Install wheel before installing any other python packages. | expand

Checks

Context Check Description
ovsrobot/apply-robot success apply and check: success
ovsrobot/github-robot-_Build_and_Test success github build: passed

Commit Message

Vladislav Odintsov Jan. 10, 2023, 10:08 p.m. UTC
Signed-off-by: Vladislav Odintsov <odivlad@gmail.com>
---
 .ci/linux-build.sh | 1 +
 .ci/osx-build.sh   | 1 +
 2 files changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh
index 0e9f87fa8..4217b4365 100755
--- a/.ci/linux-build.sh
+++ b/.ci/linux-build.sh
@@ -11,6 +11,7 @@  function configure_ovs()
 {
     git clone https://github.com/openvswitch/ovs.git ovs_src
     pushd ovs_src
+    git checkout v2.17.0
     ./boot.sh && ./configure $* || { cat config.log; exit 1; }
     make -j4 || { cat config.log; exit 1; }
     popd
diff --git a/.ci/osx-build.sh b/.ci/osx-build.sh
index 6617f0b9d..e256e54c2 100755
--- a/.ci/osx-build.sh
+++ b/.ci/osx-build.sh
@@ -9,6 +9,7 @@  function configure_ovs()
 {
     git clone https://github.com/openvswitch/ovs.git ovs_src
     pushd ovs_src
+    git checkout v2.17.0
     ./boot.sh && ./configure $*
     make -j4 || { cat config.log; exit 1; }
     popd