We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9840dc commit 5d61047Copy full SHA for 5d61047
1 file changed
.github/workflows/CI.yaml
@@ -77,12 +77,12 @@ jobs:
77
if: steps.cache-qtmsbuild-tools.outputs.cache-hit != 'true'
78
run: |
79
Invoke-WebRequest -Uri ${{env.QT_VS_ADDIN_URL}} -MaximumRetryCount 10 -RetryIntervalSec 30 -OutFile vspackage.vsix
80
- Expand-Archive vspackage.vsix -DestinationPath ${{ runner.temp }}/qtmsbuild
+ Expand-Archive vspackage.vsix -DestinationPath ${{github.workspace}}/ExternalLibraries/qtvsaddin
81
82
- name: Build GUI
83
env:
84
- QtToolsPath: ${{ runner.temp }}/qt/5.15.2/msvc2019/bin
85
- QtMsBuild: ${{ runner.temp }}/qtmsbuild
+ QtToolsPath: ${{ env.QT_ROOT_DIR }}\bin
+ QtMsBuild: ${{github.workspace}}/ExternalLibraries/qtvsaddin/QtMsBuild
86
run: msbuild -m -p:"Configuration=DebugGUI;Platform=x86" GhostServer.sln
87
88
- name: Build CLI
0 commit comments