[Openvpn-devel] GitHub Actions: remove Ubuntu 16.04 environment

Message ID 20210926061046.212-1-lstipakov@gmail.com
State Accepted
Headers show
Series [Openvpn-devel] GitHub Actions: remove Ubuntu 16.04 environment | expand

Commit Message

Lev Stipakov Sept. 25, 2021, 8:10 p.m. UTC
From: Lev Stipakov <lev@openvpn.net>

Starting from 20th of September, GitHub has removed Ubuntu 16.04
environment from Actions. Safely remove it from our build script
where we already have Ubuntu 18.04 and 20.04.

Signed-off-by: Lev Stipakov <lev@openvpn.net>
---
 .github/workflows/build.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Gert Doering Sept. 28, 2021, 6:17 a.m. UTC | #1
Acked-by: Gert Doering <gert@greenie.muc.de>

"straight and to the point" :-)

Your patch has been applied to the master branch.

commit c3b16d7a35a2fd1ee4a70418fddc7c1dd9539dc3
Author: Lev Stipakov
Date:   Sun Sep 26 09:10:46 2021 +0300

     GitHub Actions: remove Ubuntu 16.04 environment

     Signed-off-by: Lev Stipakov <lev@openvpn.net>
     Acked-by: Gert Doering <gert@greenie.muc.de>
     Message-Id: <20210926061046.212-1-lstipakov@gmail.com>
     URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg22904.html
     Signed-off-by: Gert Doering <gert@greenie.muc.de>


--
kind regards,

Gert Doering
Gert Doering Sept. 30, 2021, 8:17 p.m. UTC | #2
Hi,

On Tue, Sep 28, 2021 at 06:17:31PM +0200, Gert Doering wrote:
> Acked-by: Gert Doering <gert@greenie.muc.de>
> 
> "straight and to the point" :-)
> 
> Your patch has been applied to the master branch.
> 
> commit c3b16d7a35a2fd1ee4a70418fddc7c1dd9539dc3
> Author: Lev Stipakov
> Date:   Sun Sep 26 09:10:46 2021 +0300

... and cherry-picked to 2.5

commit 9f9cb07ede67f2baf63f107de5630ef76caeda7e (HEAD -> release/2.5)

gert

Patch

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index f97b79ee..514ae66b 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -126,7 +126,7 @@  jobs:
   ubuntu:
     strategy:
       matrix:
-        os: [ubuntu-16.04, ubuntu-18.04, ubuntu-20.04]
+        os: [ubuntu-18.04, ubuntu-20.04]
         ssllib: [mbedtls, openssl]
 
     runs-on: ${{matrix.os}}