Skip to content

Commit

Permalink
switch ninja for ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
dsm committed Nov 29, 2024
1 parent f44b7cf commit 5226827
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,19 +137,23 @@ jobs:
install-deps: 'true'
modules: 'qtcharts'


- name: '⚙️ Install CMake'
uses: lukka/get-cmake@latest

- name: 'Configure CMake'
run: |
cmake -B ${{github.workspace}}/build \
cmake -B ${{github.workspace}}/build -G 'Ninja' \
-DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_PREFIX=${{github.workspace}}/AppDir/usr \
-DWITH_QT6=ON \
-DCI_VERSION="${{env.VERSION}}"
- name: 'Build'
# Build your program with the given configuration
run: |
cmake --build ${{github.workspace}}/build -j`nproc` --config ${{env.BUILD_TYPE}}
make -C ${{github.workspace}}/build install DESTDIR=${{github.workspace}}/AppDir
cmake --build ${{github.workspace}}/build --target install
- name: 'Install linuxdeploy'
Expand Down

0 comments on commit 5226827

Please sign in to comment.