mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-30 00:50:38 +08:00
26 lines
724 B
YAML
Vendored
26 lines
724 B
YAML
Vendored
name: Linux, MacOS
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
compiler: [g++, clang++]
|
|
flags: [-std=c++11, -std=c++17]
|
|
optimize: [-O2]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.0.0
|
|
- name: Build and test
|
|
env:
|
|
CXX: ${{ matrix.compiler }}
|
|
COMPILERFLAGS: ${{ matrix.flags }} ${{ matrix.optimize }}
|
|
run: |
|
|
mkdir build && cd build && cmake -DPHMAP_BUILD_TESTS=ON -DPHMAP_BUILD_EXAMPLES=ON -DCMAKE_CXX_COMPILER=${CXX} -DCXXFLAGS="${COMPILERFLAGS}" -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON .. && cmake --build . && make test
|