2020-10-24 18:41:20 +08:00
|
|
|
name: osx
|
2020-10-23 21:59:01 +08:00
|
|
|
|
2020-10-24 18:41:20 +08:00
|
|
|
on: [push]
|
2020-10-23 21:59:01 +08:00
|
|
|
|
|
|
|
env:
|
|
|
|
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
2020-10-24 18:41:20 +08:00
|
|
|
TRAVIS_OS_NAME: osx
|
2020-10-25 20:15:49 +08:00
|
|
|
BUILD_TARGET: osx
|
2020-10-23 22:36:32 +08:00
|
|
|
# Simple let github action to build all (TODO: optimize in the future)
|
2020-10-25 20:19:28 +08:00
|
|
|
TRAVIS_PULL_REQUEST: false
|
2020-10-25 20:15:49 +08:00
|
|
|
BUILD_TYPE: Release
|
|
|
|
GITHUB_CI: true
|
2020-10-23 21:59:01 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
# The CMake configure and build commands are platform agnostic and should work equally
|
|
|
|
# well on Windows or Mac. You can convert this to a matrix build if you need
|
|
|
|
# cross-platform coverage.
|
|
|
|
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
|
2020-10-24 18:41:20 +08:00
|
|
|
runs-on: macos-latest
|
2020-10-23 21:59:01 +08:00
|
|
|
|
|
|
|
steps:
|
2020-10-24 10:41:35 +08:00
|
|
|
- uses: actions/checkout@v2
|
2020-10-23 22:47:38 +08:00
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
2020-10-24 18:41:20 +08:00
|
|
|
|
2020-10-23 21:59:01 +08:00
|
|
|
- name: Create Build Environment
|
|
|
|
# Some projects don't allow in-source building, so create a separate build directory
|
2020-10-24 18:41:20 +08:00
|
|
|
# We'll use this as our working directory for all
|
2020-10-23 22:39:59 +08:00
|
|
|
run: tools/travis-scripts/before-install.sh
|
2020-10-24 18:41:20 +08:00
|
|
|
|
2020-10-23 21:59:01 +08:00
|
|
|
- name: Build
|
|
|
|
# Execute the build. You can specify a specific target with "--target <NAME>"
|
2020-10-23 22:36:32 +08:00
|
|
|
run: tools/travis-scripts/run-script.sh
|