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 cff679a commit 8fc9c82
Showing 1 changed file with 22 additions and 21 deletions.
43 changes: 22 additions & 21 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,31 +112,32 @@ jobs:
#
# Build SocNetV
#
- if: contains( matrix.os, 'ubuntu-latest')
name: Build for Linux
run: |
echo "openssl version:"
echo `openssl version`
echo "Check output of 'which qmake6':"
which qmake6
echo "Check qmake6 -v:"
qmake6 -v
qmake6 CONFIG+=debug && make -s -j 8
echo "Building finished! "
echo "Files in current directory: "
find .
# BUILD FOR MACOS
- if: contains( matrix.os, 'macos')
name: Build for macOS
run: |
qmake CONFIG+=debug socnetv.pro
make -s -j 8
find .
# - if: contains( matrix.os, 'ubuntu-latest')
# name: Build for Linux
# run: |
# echo "openssl version:"
# echo `openssl version`
# echo "Check output of 'which qmake6':"
# which qmake6
# echo "Check qmake6 -v:"
# qmake6 -v
# qmake6 CONFIG+=debug && make -s -j 8
# echo "Building finished! "
# echo "Files in current directory: "
# find .
# # BUILD FOR MACOS
# - if: contains( matrix.os, 'macos')
# name: Build for macOS
# run: |
# qmake CONFIG+=debug socnetv.pro
# make -s -j 8
# find .
# BUILD FOR WINDOWS
- 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
dir D:\a\app\Qt\6.2.4
dir D:\a\app\Qt\6.2.4\mingw_64\bin
qmake CONFIG+=debug socnetv.pro
mingw32-make
make
Expand Down

0 comments on commit 8fc9c82

Please sign in to comment.