From d3fc9e82c4c1737a8fee832b120e49419e2f54e0 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Wed, 6 May 2020 15:46:49 +0200 Subject: [PATCH] Add the 'runs-on' field for containerized actiosn --- .github/workflows/build.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 801a0611..92afcafa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,11 +13,11 @@ on: jobs: build-bionic: name: Build on Ubuntu 18.04 - container: - # This container contains everything needed to build yabridge except for - # Boost since that's not easily available and it the parts we need are - # quick to compile anyway - image: robbert/docker-yabridge:bionic + runs-on: ubuntu-latest + # This container contains everything needed to build yabridge except for + # Boost since that's not easily available and it the parts we need are + # quick to compile anyway + container: robbert/docker-yabridge:bionic outputs: artifact-name: ${{ env.ARCHIVE_NAME }} steps: @@ -97,11 +97,11 @@ jobs: build-focal: name: Build on Ubuntu 20.04 - container: - # This container contains everything needed to build yabridge except for - # Boost since that's not easily available and it the parts we need are - # quick to compile anyway - image: robbert/docker-yabridge:focal + runs-on: ubuntu-latest + # This container contains everything needed to build yabridge except for + # Boost since that's not easily available and it the parts we need are + # quick to compile anyway + container: robbert/docker-yabridge:focal outputs: artifact-name: ${{ env.ARCHIVE_NAME }} steps: