Skip to content

Commit

Permalink
[Actions] Changing Windows build to catch the potential fail in a sin…
Browse files Browse the repository at this point in the history
…gle project (#256)

* Changing Windows build action to logical sum to catch potential fails

* Removing the local test to prepare for a pull request
  • Loading branch information
VeithMetro authored Oct 18, 2023
1 parent eefc5bf commit ea39c7e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/Build ThunderNanoServicesRDK on Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,14 @@ jobs:

- name: Build ThunderNanoServicesRDK
shell: cmd
run: |
run: >
cd ThunderOnWindows
"%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%deviceInfo%" "%solution%"
"%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%locationSync%" "%solution%"
"%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%messenger%" "%solution%"
"%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%monitor%" "%solution%"
"%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%openCDMi%" "%solution%"
"%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%securityAgent%" "%solution%"
&& "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%deviceInfo%" "%solution%"
&& "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%locationSync%" "%solution%"
&& "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%messenger%" "%solution%"
&& "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%monitor%" "%solution%"
&& "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%openCDMi%" "%solution%"
&& "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%securityAgent%" "%solution%"
- name: Tar files
run: tar -czvf ${{matrix.type}}${{matrix.version}}.tar.gz artifacts
Expand Down

0 comments on commit ea39c7e

Please sign in to comment.