Skip to content

SimpleDOM support for XML (with RapidXml) and JSON (with rapidjson) (… #118

SimpleDOM support for XML (with RapidXml) and JSON (with rapidjson) (…

SimpleDOM support for XML (with RapidXml) and JSON (with rapidjson) (… #118

Workflow file for this run

name: macOS ARM
on:
push:
branches: [ "main", "release/*" ]
pull_request:
branches: [ "main", "release/*" ]
jobs:
macOS-clang-release:
runs-on: [self-hosted, macOS, ARM64]
steps:
# - uses: szenius/set-timezone@v1.2
# with:
# timezoneLinux: "Asia/Shanghai"
# timezoneMacos: "Asia/Shanghai"
# timezoneWindows: "China Standard Time"
- uses: actions/checkout@v3
- name: Install Dependencies
shell: bash
run: |
brew install cmake openssl@1.1 gflags googletest gsasl
- name: Build
run: |
cmake -B ${{github.workspace}}/build -D PHOTON_BUILD_TESTING=ON -D CMAKE_BUILD_TYPE=Release \
-D PHOTON_ENABLE_SASL=ON -D OPENSSL_ROOT_DIR=/usr/local/opt/openssl@1.1
cmake --build ${{github.workspace}}/build -j
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest --timeout 3600 -V