We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdaa47c commit 467a399Copy full SHA for 467a399
.github/workflows/macos_debug.yml
@@ -70,15 +70,16 @@ jobs:
70
with:
71
version: 1.18.6
72
73
+
74
- name: Create build directory
75
run: mkdir ${{ runner.temp }}/shadow_build_dir
76
77
- name: Build
78
working-directory: ${{ runner.temp }}/shadow_build_dir
79
run: |
- cmake -S ${{ env.SOURCE_DIR }} -B ${{ runner.temp }}/shadow_build_dir/ -G Ninja -DCMAKE_BUILD_TYPE=Debug
80
- cmake --build ${{ runner.temp }}/shadow_build_dir/ --target all --config Debug
81
- cmake --install ${{ runner.temp }}/shadow_build_dir
+ export JOBS=$((`sysctl -n hw.ncpu`+1))
+ qmake -r ${SOURCE_DIR}/qgroundcontrol.pro CONFIG+=installer CONFIG+=${BUILD_TYPE}
82
+ make -j$JOBS
83
84
- name: Upload Build File
85
uses: ./.github/actions/upload
0 commit comments