summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAdam Mitz <mitza@objectcomputing.com>2021-08-20 14:51:03 -0500
committerGitHub <noreply@github.com>2021-08-20 14:51:03 -0500
commit31673b8bcb8ff7e4b8e67f2671deef5a3f32d521 (patch)
tree060fe3aa030b5f2e0427c4048bca7b95da655515 /.github
parentb2600884c13345f77212290886b5ce623c7a8e7a (diff)
parent5dc04f8e9ff9803d8b40b144dff0ea81142d7daa (diff)
downloadATCD-31673b8bcb8ff7e4b8e67f2671deef5a3f32d521.tar.gz
Merge pull request #1657 from jrw972/support-big-sur
ACE 6 doesn't support Big Sur
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/macosx.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/macosx.yml b/.github/workflows/macosx.yml
index 96389ef47d2..f0016715f29 100644
--- a/.github/workflows/macosx.yml
+++ b/.github/workflows/macosx.yml
@@ -5,6 +5,7 @@ on:
pull_request:
schedule:
- cron: '0 1 * * SUN'
+ workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
@@ -13,11 +14,12 @@ concurrency:
jobs:
build:
strategy:
+ fail-fast: false
matrix:
cxxstd: ["03", "11"]
+ os: [macos-10.15, macos-11.0]
include:
- - os: macos-10.15
- platform_file: include $(ACE_ROOT)/include/makeinclude/platform_macosx.GNU
+ - platform_file: include $(ACE_ROOT)/include/makeinclude/platform_macosx.GNU
runs-on: ${{ matrix.os }}
name: "${{ matrix.os }}-C++${{ matrix.cxxstd }}"
env: