summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Mitz <mitza@objectcomputing.com>2021-08-20 12:41:22 -0500
committerAdam Mitz <mitza@objectcomputing.com>2021-08-20 12:41:22 -0500
commit5dc04f8e9ff9803d8b40b144dff0ea81142d7daa (patch)
tree331986ef7492eca3c448033c71fac67ef66ac4d7
parentf416adcbdc76f096ae34bb984a50c1070e957701 (diff)
downloadATCD-5dc04f8e9ff9803d8b40b144dff0ea81142d7daa.tar.gz
GitHub Actions for macOS 11
-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 d7ff328b136..6450f3d4c0d 100644
--- a/.github/workflows/macosx.yml
+++ b/.github/workflows/macosx.yml
@@ -5,15 +5,17 @@ on:
pull_request:
schedule:
- cron: '0 1 * * SUN'
+ workflow_dispatch:
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: