Skip to content
Snippets Groups Projects
Verified Commit 2efffc18 authored by Josch Morgenstern's avatar Josch Morgenstern
Browse files

[#86] add osx job

parent affd25d2
No related branches found
No related tags found
1 merge request!78Resolve "MacOS Support"
Pipeline #26351 canceled
This commit is part of merge request !78. Comments created here will be created in the context of that merge request.
variables: variables:
RUN: RUN:
value: "all" value: "all"
description: "The tests that should run. Possible values: ubuntu, win, all." description: "The tests that should run. Possible values: ubuntu, win, osx, all."
GIT_DEPTH: 1 GIT_DEPTH: 1
stages: stages:
...@@ -51,6 +51,23 @@ build_win10_msvc: ...@@ -51,6 +51,23 @@ build_win10_msvc:
- cmake -DCMAKE_BUILD_TYPE=Debug .. - cmake -DCMAKE_BUILD_TYPE=Debug ..
- cmake --build . - cmake --build .
build_osx_clang:
only:
variables:
- $RUN =~ /\bosx.*/i || $RUN =~ /\ball.*/i
stage: build
tags:
- osx-clang-cached
variables:
GIT_SUBMODULE_STRATEGY: recursive
timeout: 10m
retry: 1
script:
- mkdir debug
- cd debug
- cmake -DCMAKE_BUILD_TYPE=Debug ..
- cmake --build .
deploy_doc_develop: deploy_doc_develop:
only: only:
variables: variables:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment