Patch: run linux build on ubuntu-18.04

Running on ubuntu-latest means you need a more recent version of glibc which breaks on older ubuntu.

Thanks to @theofficialgman for suggesting the fix.
This commit is contained in:
Edwin Joassart 2022-12-02 13:00:01 +01:00
parent 30c4baa58b
commit 57a6ceff0e

View File

@ -20,5 +20,5 @@ jobs:
(github.event.pull_request.head.repo.full_name != github.repository && github.event_name == 'pull_request_target') (github.event.pull_request.head.repo.full_name != github.repository && github.event_name == 'pull_request_target')
secrets: inherit secrets: inherit
with: with:
tests_run_on: '["ubuntu-latest","macos-latest","windows-2019"]' tests_run_on: '["ubuntu-18.04","macos-latest","windows-2019"]'
restrict_custom_actions: false restrict_custom_actions: false