From 68d748fd00b772ffc6acf87698a6be3ab8f8e443 Mon Sep 17 00:00:00 2001 From: eyal0 <109809+eyal0@users.noreply.github.com> Date: Sun, 3 Jan 2021 12:01:54 -0700 Subject: [PATCH] Remove Boost 1.60 CI build It's already very old. --- .github/workflows/ci.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66751940a..305a8d8b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,12 +14,10 @@ jobs: strategy: matrix: os: [ubuntu, macos] - boost: ['1_60', '1_66', '1_75'] + boost: ['1_66', '1_75'] geos: ['3.8.1', 'none'] compiler: ['g++', 'g++-8', 'clang++'] exclude: - - os: macos - boost: '1_60' - os: macos boost: '1_66' - os: ubuntu @@ -32,8 +30,6 @@ jobs: compiler: g++-8 geos: '3.8.1' code_coverage: "--enable-code-coverage" - - boost: 1_60 - skip_gerberimporter_tests: "SKIP_GERBERIMPORTER_TESTS=1" runs-on: ${{ matrix.os }}-latest steps: @@ -240,13 +236,13 @@ jobs: env: VERBOSE: 1 SKIP_GERBERIMPORTER_TESTS_PNG: 1 - run: ${{ matrix.skip_gerberimporter_tests }} make -j ${NUM_CPUS} check + run: make -j ${NUM_CPUS} check - name: Run unit tests with valgrind if: matrix.os == 'ubuntu' env: VERBOSE: 1 SKIP_GERBERIMPORTER_TESTS_PNG: 1 - run: ${{ matrix.skip_gerberimporter_tests }} make -j ${NUM_CPUS} check-valgrind + run: make -j ${NUM_CPUS} check-valgrind - name: Run integration tests if: matrix.boost == '1_66' && matrix.geos == '3.8.1' run: |