Skip to content

Commit

Permalink
Work on CI Builds - fix for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
oxy86 committed Nov 24, 2024
1 parent bf2ccdf commit cff679a
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build SocNetV (CI) with GitHub Actions 🚀
name: Build SocNetV (CI) 🚀

Check warning on line 1 in .github/workflows/build-ci.yml

View workflow job for this annotation

GitHub Actions / validate-yaml

1:1 [document-start] missing document start "---"
# run-name: ${{ github.actor }} testing latest SocNetV build with
on: [push]

Check warning on line 3 in .github/workflows/build-ci.yml

View workflow job for this annotation

GitHub Actions / validate-yaml

3:1 [truthy] truthy value should be one of [false, true]
jobs:
Expand Down Expand Up @@ -46,11 +46,12 @@ jobs:
- if: contains( matrix.os, 'windows')
name: Prepare for Windows
run: |
pip install aqtinstall
aqt list-qt linux desktop
aqt list-qt windows desktop
aqt list-qt macos desktop
aqt list-qt windows desktop --modules ${{ matrix.qt-version }} win64_mingw
dir
# pip install aqtinstall
# aqt list-qt linux desktop
# aqt list-qt windows desktop
# aqt list-qt mac desktop
# aqt list-qt windows desktop --modules ${{ matrix.qt-version }} win64_mingw
- if: contains( matrix.os, 'ubuntu')
name: Install dependencies
run: |
Expand Down Expand Up @@ -132,11 +133,12 @@ jobs:
make -s -j 8
find .
# BUILD FOR WINDOWS
- if: contains( matrix.os, 'windows') && startsWith( matrix.qt-version, '6.' ) && matrix.qt-version != '6.2.5'
- if: contains( matrix.os, 'windows') && startsWith( matrix.qt-version, '6.' ) && matrix.qt-version == '6.2.4'
name: Build for Windows
run: |
dir D:\a\app\Qt\6.2.4\mingw_64
qmake CONFIG+=debug socnetv.pro
mingw64-make
mingw32-make
make
dir
Expand Down

0 comments on commit cff679a

Please sign in to comment.