From 4d476213d455e7026316703e653c82dc88cfa2c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Trojnara?= Date: Sun, 7 Aug 2022 17:12:17 +0200 Subject: [PATCH] Identify runner OS with runner.os instead of matrix.os --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c410f9d..6fd4c8c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,7 +63,7 @@ jobs: - uses: actions/checkout@v3 - name: Cache the vcpkg archives - if: matrix.os != 'ubuntu-latest' + if: matrix.cache != '' uses: actions/cache@v3 with: path: ${{matrix.cache}} @@ -79,11 +79,11 @@ jobs: arch: ${{matrix.arch}} - name: Install apt dependencies (Linux) - if: matrix.os == 'ubuntu-latest' + if: runner.os == 'Linux' run: sudo apt-get install -y libssl-dev libcurl4-openssl-dev faketime - name: Setup the oldest supported version of cmake (macOS) - if: matrix.os == 'macOS-latest' + if: runner.os == 'macOS' uses: jwlawson/actions-setup-cmake@v1.12 with: cmake-version: '3.17.0' @@ -103,11 +103,11 @@ jobs: --config ${{env.BUILD_TYPE}} - name: List files (Linux/macOS) - if: matrix.os != 'windows-latest' + if: runner.os != 'Windows' run: find .. -ls - name: List files (Windows) - if: matrix.os == 'windows-latest' + if: runner.os == 'Windows' run: Get-ChildItem -Recurse -Name .. - name: Test