-
Notifications
You must be signed in to change notification settings - Fork 477
54 lines (49 loc) · 1.26 KB
/
ci-cpack.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
42
43
44
45
46
47
48
49
50
51
52
53
54
name: CPack check
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
job-build1:
runs-on: ci-gcc9
if: ${{ github.repository != 'intel/pcm' }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Configure CMake
run: |
cmake --version
rm -rf ${{ github.workspace }}/build
cmake -B ${{ github.workspace }}/build -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/build
- name: Build and Install
run: |
g++ --version
cd ${{ github.workspace }}/build
make -j$(nproc)
- name: CPack
run: |
cd ${{ github.workspace }}/build
cpack
job-build2:
runs-on: ci-test
if: ${{ github.repository != 'intel/pcm' }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Configure CMake
run: |
cmake --version
rm -rf ${{ github.workspace }}/build
cmake -B ${{ github.workspace }}/build -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/build
- name: Build and Install
run: |
g++ --version
cd ${{ github.workspace }}/build
make -j$(nproc)
- name: CPack
run: |
cd ${{ github.workspace }}/build
cpack