mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-29 15:55:04 +00:00
Create minimal widows CMake build job. (#2356)
* Create minimal widows CMake build job.
This commit is contained in:
parent
186ad03fdb
commit
e3aeb770ee
16
.github/workflows/ccpp.yml
vendored
16
.github/workflows/ccpp.yml
vendored
@ -13,7 +13,7 @@ jobs:
|
|||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-18.04, ubuntu-16.04, macos-latest]
|
os: [ubuntu-18.04, ubuntu-16.04, macos-latest, windows-latest]
|
||||||
python-version: [3.7.x]
|
python-version: [3.7.x]
|
||||||
# Prevent one job from pausing the rest
|
# Prevent one job from pausing the rest
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
@ -97,3 +97,17 @@ jobs:
|
|||||||
-DBREAKPAD_FRAMEWORK_DIR="$BREAKPAD_FRAMEWORK_DIR" \
|
-DBREAKPAD_FRAMEWORK_DIR="$BREAKPAD_FRAMEWORK_DIR" \
|
||||||
../src && \
|
../src && \
|
||||||
make -j4;
|
make -j4;
|
||||||
|
- name: cmake windows
|
||||||
|
if: contains(matrix.os, 'windows-latest')
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
pip install ninja
|
||||||
|
scripts/fetch_deps.sh
|
||||||
|
export PATH=$PWD/cutter-deps/qt/bin:$PATH
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DCUTTER_USE_BUNDLED_RADARE2=ON \
|
||||||
|
../src
|
||||||
|
cmake --build .
|
||||||
|
Loading…
Reference in New Issue
Block a user