From 5a67b45b4cfa9b4a35423e0cacfc4e20303a4f13 Mon Sep 17 00:00:00 2001 From: Dr-Electron Date: Sun, 11 Jun 2023 20:40:53 +0200 Subject: [PATCH] Use workflows to use ubuntu-latest --- .github/workflows/covector.yml | 6 ++---- .github/workflows/python-bindings-publish.yml | 5 ++--- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/covector.yml b/.github/workflows/covector.yml index 1f0078882..8ccb845f2 100644 --- a/.github/workflows/covector.yml +++ b/.github/workflows/covector.yml @@ -81,8 +81,7 @@ jobs: # XXX: The GitHub hosted Windows 2022 image comes with Visual Studio 2022, but node-gyp # (which is used by neon-sys) sadly fails to recognize it. As a mitigation, we still run the # tests on Windows 2019, until we can figure out a way to fix the problem. - # NOTE: Using Ubuntu 18.04 to provide glibc compatibility. (#588) - os: [ubuntu-18.04, macos-latest, windows-2019] + os: [ubuntu-latest, macos-latest, windows-2019] node: ['12', '14', '16'] exclude: # FIXME: fatal error C1083: Cannot open include file: 'node.h': No such file or directory @@ -129,8 +128,7 @@ jobs: # XXX: The GitHub hosted Windows 2022 image comes with Visual Studio 2022, but node-gyp # (which is used by neon-sys) sadly fails to recognize it. As a mitigation, we still run the # tests on Windows 2019, until we can figure out a way to fix the problem. - # NOTE: Using Ubuntu 18.04 to provide glibc compatibility. (#588) - os: [ubuntu-18.04, macos-latest, windows-2019] + os: [ubuntu-latest, macos-latest, windows-2019] steps: - name: Checkout the Source Code diff --git a/.github/workflows/python-bindings-publish.yml b/.github/workflows/python-bindings-publish.yml index 0a66885d3..1389b1d6f 100644 --- a/.github/workflows/python-bindings-publish.yml +++ b/.github/workflows/python-bindings-publish.yml @@ -21,11 +21,10 @@ jobs: strategy: fail-fast: false matrix: - # Using Ubuntu 18.04 to provide glibc compatibility. (#588) - os: [ubuntu-18.04, macos-latest, windows-latest] + os: [ubuntu-latest, macos-latest, windows-latest] python: ['3.9'] include: - - os: ubuntu-18.04 + - os: ubuntu-latest identifier: linux - os: macos-latest identifier: macos