Skip to content

Commit

Permalink
Create ci.macos.arm.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
beef9999 committed Sep 7, 2023
1 parent 4fe2f3b commit 93575d6
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.macos.arm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: macOS ARM

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
macOS-clang:
runs-on: [self-hosted, macOS, ARM64]

steps:
- uses: actions/checkout@v3

- name: Install Dependencies
shell: bash
run: |
brew install cmake openssl gflags googletest gsasl
- name: Build
run: |
cmake -B ${{github.workspace}}/build -D PHOTON_BUILD_TESTING=ON -D CMAKE_BUILD_TYPE=Debug \
-D PHOTON_ENABLE_SASL=ON -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl@3
cmake --build ${{github.workspace}}/build -j -- VERBOSE=1
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest --timeout 3600 -V

0 comments on commit 93575d6

Please sign in to comment.