Skip to content

update windows-related documentation #492

update windows-related documentation

update windows-related documentation #492

Workflow file for this run

name: g++ 4.8 build
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
build:
runs-on: ci-gcc48
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)