Skip to content

Merge tag '2023-12-13' into push-2023-12-13 #551

Merge tag '2023-12-13' into push-2023-12-13

Merge tag '2023-12-13' into push-2023-12-13 #551

Workflow file for this run

name: g++ 5 build
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
build:
runs-on: ci-gcc5
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: upload-artifact
uses: actions/[email protected]
with:
name: PCMforLinuxGCC5
path: build/bin/*