From 0d1d9f4634ab4e0f92518eaeb9e7962cad28f9cd Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Sat, 4 Jun 2022 10:16:20 +0200 Subject: [PATCH] CI: Test only default (shared) linkage on GHA As there is no actual compiled library there is no need to test shared and static linking. This effectively halfes the number of compile jobs. --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1bdd2525..a14fdcce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,6 @@ env: NET_RETRY_COUNT: 5 B2_CI_VERSION: 1 B2_VARIANT: debug,release - B2_LINK: shared,static LCOV_BRANCH_COVERAGE: 0 CODECOV_NAME: Github Actions @@ -342,9 +341,7 @@ jobs: matrix: include: - { os: ubuntu-20.04, build_shared: ON, build_type: Debug, generator: 'Unix Makefiles' } - - { os: ubuntu-20.04, build_shared: OFF, build_type: Debug, generator: 'Unix Makefiles' } - { os: windows-2019, build_shared: ON, build_type: Debug, generator: 'Visual Studio 16 2019' } - - { os: windows-2019, build_shared: OFF, build_type: Debug, generator: 'Visual Studio 16 2019' } timeout-minutes: 120 runs-on: ${{matrix.os}}