commit 3156f252bfabdb700ab476be61afd1b8be586be6
parent 44038fb2826822035587536b57b5d423935f65bf
Author: Andreas Gruhler <agruhl@gmx.ch>
Date: Fri, 9 Jul 2021 23:15:38 +0200
Update c-cpp.yml
Diffstat:
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
@@ -7,13 +7,21 @@ on:
branches: [ master ]
jobs:
- build:
+ setup:
+ runs-on: ${{ matrix.os }}
+ strategy:
+ matrix:
+ os: [ubuntu-18.04, ubuntu-20.04]
+ steps:
+ - name: Install Ubuntu dependencies
+ run: apt-get install libcurl4
+ build:
+ needs: setup
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-18.04, ubuntu-20.04]
-
steps:
- name: Check out repository
uses: actions/checkout@v2