Skip to content

Commit

Permalink
Use the OpenSSL installed on GH runners
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Apr 9, 2023
1 parent 79c9ac6 commit 8881cb1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Expand Up @@ -31,7 +31,8 @@ jobs:
steps:
- run: dir 'C:\Program Files'
- run: dir 'C:\Program Files\OpenSSL'
- run: dir 'C:\Program Files\OpenSSL-Win64'
- run: dir 'C:\Program Files\OpenSSL\include'
- run: dir 'C:\Program Files\OpenSSL\lib'
- uses: actions/checkout@v3
- uses: ilammy/msvc-dev-cmd@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Expand Up @@ -73,7 +73,7 @@ networkAccessDir="$OUTPUT_DIR/$QT_NAME/qtbase/src/network/access/"
}
[[ "${RUNNER_OS:-}" != Windows ]] || {
configure="configure.bat"
configOpenssl='-I C:\OpenSSL-Win32\include -L C:\OpenSSL-Win32\lib'
configOpenssl='-I "C:\Program Files\OpenSSL\include" -L "C:\Program Files\OpenSSL\lib"'
configPlatform='win32-msvc'
}
echo "Configuring Qt for $RUNNER_OS ($configPlatform)"
Expand Down

0 comments on commit 8881cb1

Please sign in to comment.