Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2023-04-11 20:07:56 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2023-04-11 20:12:40 +0300
commit91fb301dabb83beb28f2ad266be6aaee7a1a4e00 (patch)
treeda8520a49ec87e4b0a5fe9e7ba02d6801f20e1eb
parentee27d70d329e1718f39eea1f425178e747263173 (diff)
Update Python2 CI workflow to Ubuntu 20.04
GitHub no longer offers the Ubuntu 18.04 runner.
-rw-r--r--.github/workflows/python2_tests.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/python2_tests.yml b/.github/workflows/python2_tests.yml
index 779376a..aabb9ae 100644
--- a/.github/workflows/python2_tests.yml
+++ b/.github/workflows/python2_tests.yml
@@ -12,8 +12,8 @@ on:
jobs:
test_python2:
- name: Test with Python 2 on Ubuntu 18.04
- runs-on: ubuntu-18.04
+ name: Test with Python 2 on Ubuntu 20.04
+ runs-on: ubuntu-20.04
steps:
- name: Check out code from GitHub
@@ -25,7 +25,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
- sudo apt-get install python-protobuf protobuf-compiler scons
+ sudo apt-get install python-protobuf protobuf-compiler scons python-is-python2
- name: Run tests with Python 2
run: |