8000 Merge branch 'main' of github.com:greg7mdp/gtl into gh_37 · greg7mdp/gtl@3330d9c · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Merge branch 'main' of github.com:greg7mdp/gtl into gh_37 #290

Merge branch 'main' of github.com:greg7mdp/gtl into gh_37

Merge branch 'main' of github.com:greg7mdp/gtl into gh_37 #290

Workflow file for this run

name: macOS
on:
push:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
compiler: [g++, clang++]
flags: [-std=c++20]
optimize: [-O2]
env:
CXX: ${{ matrix.compiler }}
CXXFLAGS: ${{ matrix.flags }} ${{ matrix.optimize }}
CTEST_OUTPUT_ON_FAILURE: 1
CTEST_NO_TESTS_ACTION: error
CTEST_PARALLEL_LEVEL: 0
CMAKE_BUILD_PARALLEL_LEVEL: 4
steps:
- name: Checkout
uses: actions/checkout@v4
- name: CMake configure
run: cmake -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DCMAKE_BUILD_TYPE=Release -B build
- name: CMake build
run: cmake --build build
- name: CMake test
run: ctest --test-dir build
0