From c5a03c2ea0565cedeaf1708f111c66a95a25c801 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sat, 10 Dec 2022 13:48:06 +0100 Subject: [PATCH] :green_heart: fix Ubuntu build --- .github/workflows/ubuntu.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 21ab4c2d7..dca026f85 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -69,6 +69,8 @@ jobs: runs-on: ubuntu-latest container: ubuntu:focal steps: + - name: Install unzip + run: apt-get update ; apt-get install -y unzip - uses: actions/checkout@v3 - name: Get latest CMake and ninja uses: lukka/get-cmake@latest @@ -96,12 +98,13 @@ jobs: ci_cmake_options: runs-on: ubuntu-latest + container: ubuntu:focal strategy: matrix: target: [ci_test_diagnostics, ci_test_noexceptions, ci_test_noimplicitconversions, ci_test_legacycomparison, ci_test_noglobaludls] steps: - name: Install build-essential - run: apt-get update ; apt-get install -y build-essential + run: apt-get update ; apt-get install -y build-essential unzip - uses: actions/checkout@v3 - name: Get latest CMake and ninja uses: lukka/get-cmake@latest