From 76d69c045f87827dae7d7b33ba77b1e4e0463c99 Mon Sep 17 00:00:00 2001 From: Daniel Parker Date: Mon, 8 Jul 2024 10:57:29 -0400 Subject: [PATCH] Remove xcode11 --- .github/workflows/macos.yml | 44 ++++++++++++++++++------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 6d4f9a70e..d7eb6dd14 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -7,28 +7,28 @@ permissions: jobs: - xcode_11: - strategy: - fail-fast: false - matrix: - xcode: ['11','12','13'] - runs-on: macos-11 - - steps: - - uses: actions/checkout@v3 - with: - submodules: recursive - - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: ${{ matrix.xcode }} - - name: cmake - run: cmake -S . -B build -DJSONCONS_SANITIZE=ON -DCMAKE_BUILD_TYPE=Debug -DJSONCONS_BUILD_TESTS=On - - name: build - working-directory: build/ - run: cmake --build . - - name: test - working-directory: build/ - run: ctest --output-on-failure + #xcode_11: + # strategy: + # fail-fast: false + # matrix: + # xcode: ['11','12','13'] + # runs-on: macos-11 + # + # steps: + # - uses: actions/checkout@v3 + # with: + # submodules: recursive + # - uses: maxim-lobanov/setup-xcode@v1 + # with: + # xcode-version: ${{ matrix.xcode }} + # - name: cmake + # run: cmake -S . -B build -DJSONCONS_SANITIZE=ON -DCMAKE_BUILD_TYPE=Debug -DJSONCONS_BUILD_TESTS=On + # - name: build + # working-directory: build/ + # run: cmake --build . + # - name: test + # working-directory: build/ + # run: ctest --output-on-failure xcode_12: strategy: