diff mbox series

[ovs-dev] github: Move CI to ubuntu 20.04 base image.

Message ID 20220808194800.32787-1-i.maximets@ovn.org
State Accepted
Commit a7045017d8eb59be2000bf20ad2b230e8569e51f
Headers show
Series [ovs-dev] github: Move CI to ubuntu 20.04 base image. | expand

Checks

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

Commit Message

Ilya Maximets Aug. 8, 2022, 7:48 p.m. UTC
18.04 image is deprecated and will disappear soon.  Also some
slowdowns and brownouts are planned to push users away from
this deprecated version:

  https://github.com/actions/virtual-environments/issues/6002

Moving to 20.04.  Can't move to 22.04 at the moment because of
deprecation warnings from openssl 3.0.

Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
---
 .github/workflows/build-and-test.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Dumitru Ceara Aug. 9, 2022, 8:48 a.m. UTC | #1
On 8/8/22 21:48, Ilya Maximets wrote:
> 18.04 image is deprecated and will disappear soon.  Also some
> slowdowns and brownouts are planned to push users away from
> this deprecated version:
> 
>   https://github.com/actions/virtual-environments/issues/6002
> 
> Moving to 20.04.  Can't move to 22.04 at the moment because of
> deprecation warnings from openssl 3.0.
> 
> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
> ---

Looks good to me, thanks!

Acked-by: Dumitru Ceara <dceara@redhat.com>
Ilya Maximets Aug. 9, 2022, 2:03 p.m. UTC | #2
On 8/9/22 10:48, Dumitru Ceara wrote:
> On 8/8/22 21:48, Ilya Maximets wrote:
>> 18.04 image is deprecated and will disappear soon.  Also some
>> slowdowns and brownouts are planned to push users away from
>> this deprecated version:
>>
>>   https://github.com/actions/virtual-environments/issues/6002
>>
>> Moving to 20.04.  Can't move to 22.04 at the moment because of
>> deprecation warnings from openssl 3.0.
>>
>> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
>> ---
> 
> Looks good to me, thanks!
> 
> Acked-by: Dumitru Ceara <dceara@redhat.com>
> 

Thanks!  Applied to all branches down to 2.15.

2.14 and 2.13 needs special care.  Will send patches separately.

Best regards, Ilya Maximets.
diff mbox series

Patch

diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml
index 66b226ce4..58ab85e5d 100644
--- a/.github/workflows/build-and-test.yml
+++ b/.github/workflows/build-and-test.yml
@@ -6,7 +6,7 @@  jobs:
   build-linux:
     env:
       dependencies: |
-        automake libtool gcc bc libjemalloc1 libjemalloc-dev    \
+        automake libtool gcc bc libjemalloc2 libjemalloc-dev    \
         libssl-dev llvm-dev libelf-dev libnuma-dev libpcap-dev  \
         ninja-build selinux-policy-dev
       AFXDP:       ${{ matrix.afxdp }}
@@ -22,7 +22,7 @@  jobs:
       TESTSUITE:   ${{ matrix.testsuite }}
 
     name: linux ${{ join(matrix.*, ' ') }}
-    runs-on: ubuntu-18.04
+    runs-on: ubuntu-20.04
     timeout-minutes: 30
 
     strategy: