File tree 3 files changed +8
-6
lines changed
3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -39,16 +39,16 @@ jobs:
39
39
40
40
- name : Install curl (Linux)
41
41
if : matrix.os == 'ubuntu-latest'
42
- run : sudo apt update && sudo apt install -y libcurl4-openssl-dev
42
+ run : sudo apt update && sudo apt install -y libcurl4-openssl-dev ninja-build
43
43
44
44
- name : Install curl (Macos)
45
45
if : matrix.os == 'macos-13' || matrix.os == 'macos-14'
46
- run : brew install curl
46
+ run : brew install curl ninja
47
47
48
48
- name : Install clang (Linux)
49
49
if : matrix.os == 'ubuntu-latest'
50
50
run : |
51
- sudo apt install clang
51
+ sudo apt install -y clang
52
52
53
53
- name : Configure CMake
54
54
run : >
57
57
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
58
58
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
59
59
-S ${{ github.workspace }}
60
+ -G Ninja -Wno-dev
60
61
61
62
- name : Build
62
63
run : cmake --build ${{ steps.strings.outputs.build-output-dir }} --target plugify --config ${{ matrix.build_type }} -- -j
Original file line number Diff line number Diff line change 39
39
40
40
- name : Install curl (Linux)
41
41
if : matrix.os == 'ubuntu-latest'
42
- run : sudo apt update && sudo apt install -y libcurl4-openssl-dev
42
+ run : sudo apt update && sudo apt install -y libcurl4-openssl-dev ninja-build
43
43
44
44
- name : Configure CMake
45
45
run : >
48
48
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
49
49
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
50
50
-S ${{ github.workspace }}
51
+ -G Ninja -Wno-dev
51
52
52
53
- name : Build
53
54
run : cmake --build ${{ steps.strings.outputs.build-output-dir }} --target plugify --config ${{ matrix.build_type }} -- -j
Original file line number Diff line number Diff line change @@ -40,11 +40,11 @@ jobs:
40
40
with :
41
41
update : true
42
42
msystem : MINGW64
43
- install : mingw-w64-x86_64-cmake mingw-w64-x86_64-ninja mingw-w64-x86_64-gcc mingw-w64-x86_64-curl
43
+ install : mingw-w64-x86_64-cmake mingw-w64-x86_64-ninja mingw-w64-x86_64-gcc mingw-w64-x86_64-curl git
44
44
45
45
- name : Configure CMake
46
46
run : >
47
- cmake -G Ninja -B build
47
+ cmake -B build - G Ninja -Wno-dev
48
48
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
49
49
50
50
- name : Build
You can’t perform that action at this time.
0 commit comments