Skip to content

Upgrade image_io cxx standard. #34

Upgrade image_io cxx standard.

Upgrade image_io cxx standard. #34

Workflow file for this run

name: ci-build-macos
on:
push:
paths-ignore:
- .dockerignore
- .gitignore
- .gitattributes
- AUTHORS
- CONTRIBUTING.md
- docker-compose.yml
- LICENSE
- README.md
- Dockerfile
- images/*
- docker/*
pull_request:
jobs:
build-mac:
name: "Macos 11.7 Xcode (Clang)"
runs-on: macos-11
strategy:
matrix:
xcode: [11.7, 12.4, 13.2.1]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up CMake
uses: jwlawson/actions-setup-cmake@v1.13
with:
cmake-version: '3.14.0'
- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ matrix.xcode }}
- name: Cpplint
run: cmake -P cmake/cpplint.cmake
- name: Configure
run: cmake -B build -D DOWNLOAD_DATASETS=OFF
- name: Build tutorials
run: cmake --build build --parallel 4