File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,10 @@ jobs:
25
25
os : [ubuntu-latest, windows-latest]
26
26
include :
27
27
- os : ubuntu-latest
28
- nproc : $(nproc)
29
28
pool_scalable : ' ON'
30
29
# Windows doesn't recognize 'CMAKE_BUILD_TYPE', it uses '--config' param in build command
31
30
extra_build_option : ['-DCMAKE_BUILD_TYPE=Release']
32
31
- os : windows-latest
33
- nproc : $Env:NUMBER_OF_PROCESSORS
34
32
pool_scalable : ' OFF'
35
33
runs-on : ${{matrix.os}}
36
34
63
61
-DUMF_BUILD_LIBUMF_POOL_SCALABLE=${{matrix.pool_scalable}}
64
62
65
63
- name : Build
66
- run : cmake --build ${{github.workspace}}/build --config Release -j ${{matrix.nproc}}
64
+ run : cmake --build ${{github.workspace}}/build --config Release -j
67
65
68
66
- name : Perform CodeQL Analysis
69
67
uses : github/codeql-action/analyze@b7bf0a3ed3ecfa44160715d7c442788f65f0f923 # v3.23.2
Original file line number Diff line number Diff line change @@ -17,28 +17,24 @@ jobs:
17
17
matrix :
18
18
include :
19
19
- os : windows-latest
20
- nproc : $Env:NUMBER_OF_PROCESSORS
21
20
pool_scalable : ' OFF'
22
21
disjoint : ' OFF'
23
22
jemalloc : ' OFF'
24
23
# pure C build (Windows)
25
24
- os : windows-latest
26
- nproc : $Env:NUMBER_OF_PROCESSORS
27
25
pool_scalable : ' OFF'
28
26
disjoint : ' OFF'
29
27
jemalloc : ' OFF'
30
28
# Tests' building is off for a pure C build
31
29
extra_build_options : ' -DUMF_BUILD_TESTS=OFF'
32
30
- os : ubuntu-latest
33
- nproc : ' $(nproc)'
34
31
pool_scalable : ' ON'
35
32
disjoint : ' ON'
36
33
jemalloc : ' ON'
37
34
# Windows doesn't recognize 'CMAKE_BUILD_TYPE', it uses '--config' param in build command
38
35
extra_build_options : ' -DCMAKE_BUILD_TYPE=Release -DUMF_BUILD_BENCHMARKS=ON -DUMF_BUILD_BENCHMARKS_MT=ON'
39
36
# pure C build (Linux)
40
37
- os : ubuntu-latest
41
- nproc : ' $(nproc)'
42
38
pool_scalable : ' ON'
43
39
disjoint : ' OFF'
44
40
jemalloc : ' ON'
72
68
${{matrix.extra_build_options}}
73
69
74
70
- name : Build
75
- run : cmake --build ${{github.workspace}}/build --config Release -j ${{matrix.nproc}}
71
+ run : cmake --build ${{github.workspace}}/build --config Release -j
76
72
77
73
- name : Run examples
78
74
working-directory : ${{github.workspace}}/build
You can’t perform that action at this time.
0 commit comments