Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.

Update README to reflect project abandonment #23

Update README to reflect project abandonment

Update README to reflect project abandonment #23

name: Continuous MacOS
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master
jobs:
build:
name: ${{matrix.family}}-${{matrix.compiler}}-${{matrix.buildtype}}
runs-on: macos-latest
environment: CI
strategy:
fail-fast: false
matrix:
name: [macos-clang]
buildtype: [debug, release]
include:
- name: macos-clang
family: macos
compiler: clang
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
variant: sccache
key: ${{matrix.family}}-${{matrix.compiler}}-${{matrix.buildtype}}
max-size: 1000M
- name: Get latest CMake
uses: lukka/get-cmake@latest
- name: Run vcpkg
uses: lukka/run-vcpkg@v10
with:
appendedCacheKey: ${{matrix.name}}${{matrix.buildtype}}
- name: Run CTest workflow
run: |
export DOGEN_BUILD_PROVIDER="github"
export DOGEN_BUILD_COMMIT="${GITHUB_SHA}"
export DOGEN_BUILD_NUMBER="${GITHUB_RUN_NUMBER}"
export DOGEN_BUILD_TIMESTAMP=`date "+%Y/%m/%d %H:%M:%S"`
export preset=${{matrix.family}}-${{matrix.compiler}}-${{matrix.buildtype}}
export cmake_args="build_group=Experimental,preset=${preset}"
ctest -VV --preset ${preset} --script "CTest.cmake,${cmake_args}"
- name: Gitter
if: always()
uses: juztcode/gitter-github-action@v2
with:
room-id: ${{secrets.GITTER_ROOM_ID}}
token: ${{secrets.GITTER_TOKEN}}
text: ${{github.workflow}} - ${{matrix.family}}-${{matrix.compiler}}-${{matrix.buildtype}} - ${{job.status}}