Skip to content

Add library version macros UPA_URL_VERSION... #67

Add library version macros UPA_URL_VERSION...

Add library version macros UPA_URL_VERSION... #67

Workflow file for this run

name: macOS
on:
push:
branches: [ main ]
paths-ignore: [ 'doc/**', '**.md' ]
pull_request:
paths-ignore: [ 'doc/**', '**.md' ]
jobs:
build:
name: ${{ matrix.name }}
runs-on: macos-latest
strategy:
matrix:
include:
- name: clang++ C++17
cxx_compiler: clang++
cxx_standard: 17
cmake_options: ""
steps:
- uses: actions/checkout@v4
- name: install ICU library
run: brew install icu4c
- name: get dependencies
run: ./init.sh
- name: cmake
run: cmake -S . -B build -DCMAKE_CXX_COMPILER=${{ matrix.cxx_compiler }} -DCMAKE_CXX_STANDARD=${{ matrix.cxx_standard }} ${{ matrix.cmake_options }}
env:
ICU_ROOT: /usr/local/opt/icu4c
- name: build
run: cmake --build build --config Release
- name: test
run: cd build ; ctest -C Release -V