From 57a6ceff0e28d06063679a7a8b14671416ba46c5 Mon Sep 17 00:00:00 2001 From: Edwin Joassart Date: Fri, 2 Dec 2022 13:00:01 +0100 Subject: [PATCH] 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. --- .github/workflows/flowzone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/flowzone.yml b/.github/workflows/flowzone.yml index 0b42f9ab..6e579653 100644 --- a/.github/workflows/flowzone.yml +++ b/.github/workflows/flowzone.yml @@ -20,5 +20,5 @@ jobs: (github.event.pull_request.head.repo.full_name != github.repository && github.event_name == 'pull_request_target') secrets: inherit with: - tests_run_on: '["ubuntu-latest","macos-latest","windows-2019"]' + tests_run_on: '["ubuntu-18.04","macos-latest","windows-2019"]' restrict_custom_actions: false