From d144e0310ca1a6cbdd05b14017c15c3c16d246a8 Mon Sep 17 00:00:00 2001 From: "Evgeniy A. Dushistov" Date: Mon, 16 Jan 2023 16:41:59 +0300 Subject: [PATCH] fix CI build --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5d57d6f..edfcede 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,12 +20,13 @@ jobs: fail-fast: true matrix: - os: [ubuntu-latest] + os: [ubuntu-18.04, ubuntu-latest] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: 'recursive' - uses: jwlawson/actions-setup-cmake@v1.4 + if: matrix.os != 'ubuntu-latest' with: cmake-version: '3.5.1' github-api-token: ${{ secrets.GITHUB_TOKEN }}