Skip to content

Bump versions

Bump versions #2

Workflow file for this run

name: macOS Check
on:
workflow_dispatch: # Manual trigger
push:
branches:
- master
pull_request:
paths-ignore:
- .gitignore
- .github/**
- '!.github/workflows/macos-check.yaml' # Run check on self change
- CONTRIBUTORS
- LICENSE
- NOTICE
- README.md
- android/**
- iphone/**
- data/strings/**
- docs/**
- packaging/**
- pyhelpers/**
- tools/**
- '!tools/python/run_desktop_tests.py'
- '!tools/python/testserver.py'
- '!tools/python/SiblingKiller.py'
- xcode/**
jobs:
macos-matrix:
name: macOS builds and tests
runs-on: macos-12
env:
HOMEBREW_NO_ANALYTICS: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1
strategy:
fail-fast: false
matrix:
CMAKE_BUILD_TYPE: [Debug, RelWithDebInfo]
# Cancels previous jobs if the same branch or PR was updated again.
concurrency:
group: ${{ github.workflow }}-${{ matrix.CMAKE_BUILD_TYPE }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Parallel submodules checkout
shell: bash
run: git submodule update --depth 1 --init --recursive --jobs=$(($(sysctl -n hw.logicalcpu) * 20))
- name: Install build tools and dependencies
shell: bash
run: |
brew install ninja qt@6
- name: Configure
shell: bash
run: ./configure.sh
- name: Configure ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.workflow }}-${{ matrix.CMAKE_BUILD_TYPE }}
- name: CMake
shell: bash
run: |
echo "Building ${{ matrix.CMAKE_BUILD_TYPE }}"
cmake . -B build -G Ninja -DCMAKE_BUILD_TYPE=${{ matrix.CMAKE_BUILD_TYPE }} \
-DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DCMAKE_C_FLAGS=-g1 -DCMAKE_CXX_FLAGS=-g1
- name: Compile
shell: bash
working-directory: build
run: ninja
- name: Checkout world_feed_integration_tests_data
uses: actions/checkout@v3
with:
repository: organicmaps/world_feed_integration_tests_data
path: data/world_feed_integration_tests_data
- name: Tests
shell: bash
# generator_integration_tests - https://github.com/organicmaps/organicmaps/issues/225
# # routing_integration_tests - https://github.com/organicmaps/organicmaps/issues/221
# routing_quality_tests - https://github.com/organicmaps/organicmaps/issues/215
# drape_tests - requires X Window
# Separate run of OH boost-based test
run: |
./build/opening_hours_tests |
./tools/python/run_desktop_tests.py \
-f ./build \
-u ./data \
-d ./data \
-e generator_integration_tests \
-e routing_integration_tests \
-e routing_quality_tests \
-e search_quality_tests \
-e world_feed_integration_tests \
-e drape_tests \
-e shaders_tests \
\
-e opening_hours_tests \
-e opening_hours_integration_tests \
-e routing_consistency_tests \
-e opening_hours_supported_features_tests \
-e storage_integration_tests