From 23fc08bdf9f63267ae4e9d3a740bfbe7cc8b2d6e Mon Sep 17 00:00:00 2001 From: Geza Lore Date: Sun, 13 Jun 2021 17:00:19 +0100 Subject: [PATCH] CI: swap order of platforms GitHub Actions starts the jobs earlier in the list first. This change has the effect of starting the few longer running jobs (those on ubuntu 20.04) first. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4105e60da..b59cdb386 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,7 +34,7 @@ jobs: if [ '${{ github.event_name }}' = 'pull_request' ]; then matrix='[ "ubuntu-20.04" ]' else - matrix='[ "ubuntu-16.04", "ubuntu-18.04", "ubuntu-20.04" ]' + matrix='[ "ubuntu-20.04", "ubuntu-18.04", "ubuntu-16.04" ]' fi echo "::set-output name=matrix::$matrix"