-
Notifications
You must be signed in to change notification settings - Fork 477
41 lines (37 loc) · 984 Bytes
/
ci-gcc5.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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/upload-artifact@v3.1.1
with:
name: PCMforLinuxGCC5
path: build/bin/*