You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2022/12/05 19:21:29 UTC

[libcloud] branch trunk updated: Try fixing CI.

This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 411a2eae9 Try fixing CI.
411a2eae9 is described below

commit 411a2eae9e47ce2cb78235ce8eaec39cc869d12c
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Mon Dec 5 20:20:54 2022 +0100

    Try fixing CI.
    
    Python 3.5 and 3.6 are EOL and not supported by Ubuntu latest anymore so
    try running checks under those Python versions using Ubuntu 20.04.
---
 .github/workflows/install_test.yml | 9 +++++++--
 .github/workflows/main.yml         | 6 +++++-
 2 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/install_test.yml b/.github/workflows/install_test.yml
index 072a7f1ad..ac9b273c5 100644
--- a/.github/workflows/install_test.yml
+++ b/.github/workflows/install_test.yml
@@ -20,13 +20,18 @@ jobs:
       fail-fast: false
       matrix:
         python_version:
-          - 3.5
-          - 3.6
           - 3.7
           - 3.8
           - 3.9
           - "3.10"
           - "pypy-3.7"
+        include:
+          # python 3.5 + 3.6 is not supported with ubuntu-latest anymore so we need to
+          # use ubuntu 20.04
+          - python_version: 3.5
+            os: ubuntu-20.04
+          - python_version: 3.6
+            os: ubuntu-20.04
 
     steps:
       - uses: actions/checkout@master
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 8bb111658..5f4f7cfb8 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -49,7 +49,6 @@ jobs:
       fail-fast: false
       matrix:
         python_version:
-          - 3.6
           - 3.7
           - 3.8
           - 3.9
@@ -58,6 +57,11 @@ jobs:
           - pyjion
         os:
           - ubuntu-latest
+        include:
+          # python 3.6 is not supported with ubuntu-latest anymore so we need to
+          # use ubuntu 20.04
+          - python_version: 3.6
+            os: ubuntu-20.04
 
     steps:
       - uses: actions/checkout@master