Fix for loading TFS layers based on min/max levels available in the s… #1349
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macosx-x64 | |
on: [push, pull_request, workflow_dispatch] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ['macos-12'] | |
include: | |
- os: 'macos-12' | |
triplet: 'x64-macosx' | |
steps: | |
- name: Setup environment | |
run: | | |
# brew install cmake | |
brew install gdal | |
brew install geos | |
brew install sqlite | |
brew install protobuf | |
brew install poco | |
brew install open-scene-graph | |
sudo xcode-select -p | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Create Build Environment | |
run: | | |
# patch for opengl warnings | |
macos_xcode_defs="ADD_DEFINITIONS(-DGL_SILENCE_DEPRECATION=1)\nadd_compile_options(-Wno-inconsistent-missing-override)\n" | |
echo -e "${macos_xcode_defs}\n$(cat ${{runner.workspace}}/osgearth/src/CMakeLists.txt)" > ${{runner.workspace}}/osgearth/src/CMakeLists.txt | |
cmake -E make_directory ${{runner.workspace}}/build | |
- name: Configure CMake | |
shell: bash | |
working-directory: ${{ runner.workspace }}/build | |
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DOSGEARTH_BUILD_LEGACY_SPLAT_NODEKIT=ON -DOSGEARTH_BUILD_PROCEDURAL_NODEKIT=ON -DCMAKE_CXX_STANDARD:STRING=14 -DCMAKE_CXX_STANDARD_REQUIRED:BOOL=ON -DCMAKE_CXX_EXTENSIONS:BOOL=OFF -GXcode | |
- name: 'Upload cmake configure log artifact' | |
uses: actions/upload-artifact@v2 | |
if: ${{ failure() }} | |
with: | |
name: cmake-configure-log | |
path: | | |
${{ runner.workspace }}/build/CMakeCache.txt | |
retention-days: 1 | |
- name: Build | |
working-directory: ${{ runner.workspace }}/build | |
shell: bash | |
run: cmake --build . --config $BUILD_TYPE | |
- name: 'Upload cmake build log artifact' | |
uses: actions/upload-artifact@v2 | |
if: ${{ failure() }} | |
with: | |
name: cmake-build-log | |
path: | | |
${{ runner.workspace }}/build/CMakeCache.txt | |
retention-days: 1 |