Skip to content

Commit

Permalink
Add MacOS CI
Browse files Browse the repository at this point in the history
  • Loading branch information
oclero committed Nov 9, 2023
1 parent 680591b commit 1629040
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: MacOS

on:
push:
branches: [ "master", "setup-ci" ]
pull_request:
branches: [ "master" ]

env:
# CMake build type (Release, Debug, RelWithDebInfo, etc.).
BUILD_TYPE: Release
GENERATOR: Xcode
QT_VERSION: '5.15.2'

jobs:
build:
runs-on: macos-latest

steps:
- name: Check Out
# Checks out the repository.
uses: actions/checkout@v4

- name: Install Qt
# Installs the Qt SDK.
uses: jurplel/install-qt-action@v3
with:
version: ${{env.QT_VERSION}}
host: mac
target: desktop

- name: Configure CMake
# Configures CMake in a 'build' subdirectory.
run: cmake -B ${{github.workspace}}/build -G "${{env.GENERATOR}}" -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGNING_REQUIRED=OFF -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY=""

- name: Builds the library.
# Builds with the given configuration.
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Builds the Sandbox app.
# Builds the sandbox app with the given configuration.
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target sandbox

0 comments on commit 1629040

Please sign in to comment.