add MSRH hndle to OS thread on OSX #559
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: g++ 7 build | |
on: | |
push: | |
branches: [ '**' ] | |
pull_request: | |
branches: [ '**' ] | |
jobs: | |
build: | |
runs-on: ci-gcc7 | |
if: ${{ github.repository != 'intel/pcm' }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install simdjson | |
uses: actions/checkout@v3 | |
with: | |
repository: simdjson/simdjson | |
path: src/simdjson | |
- name: Configure CMake | |
run: | | |
cmake --version | |
rm -rf ${{ github.workspace }}/build && mkdir ${{ github.workspace }}/build | |
cd ${{ github.workspace }}/build | |
cmake -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/build .. | |
- name: Build | |
run: | | |
g++ --version | |
cd ${{ github.workspace }}/build | |
make -j$(nproc) | |
- name: Install | |
run: | | |
cd ${{ github.workspace }}/build | |
make install -j$(nproc) | |
- name: Diagnostic | |
run: date |