Merge pull request #622 from intel/push-2023-12-13 #553
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++ 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) |