Skip to content

Commit

Permalink
[Actions] Updating Windows project files paths after the renaming (#1634
Browse files Browse the repository at this point in the history
)

* Updating the devenv command line call after the Visual Studio update

* Updating the path due to the recent renaming
  • Loading branch information
VeithMetro authored Jun 10, 2024
1 parent eb25181 commit b9fbee7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/Build Thunder on Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ on:
- 'ReleaseNotes/**'

env:
bridge: Thunder\Source\WPEFramework\bridge.vcxproj
comProcess: Thunder\Source\WPEProcess\comprocess.vcxproj
bridge: Thunder\Source\Thunder\bridge.vcxproj
comProcess: Thunder\Source\ThunderPlugin\comprocess.vcxproj
devEnv: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\devenv.com
solution: Thunder.sln
warningReporting: Thunder\Source\extensions\warningreporting\warningreporting.vcxproj
Expand Down Expand Up @@ -124,9 +124,9 @@ jobs:
run: >
cd ThunderOnWindows
&& set CoreConsole="__CORE_WARNING_REPORTING__"
&& "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%bridge%" "%solution%"
&& "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%comProcess%" "%solution%"
&& "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%warningReporting%" "%solution%"
&& "%devEnv%" "%solution%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%bridge%"
&& "%devEnv%" "%solution%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%comProcess%"
&& "%devEnv%" "%solution%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%warningReporting%"
- name: Tar files
run: tar -czvf ${{matrix.type}}${{matrix.version}}.tar.gz artifacts
Expand Down

0 comments on commit b9fbee7

Please sign in to comment.