-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Actions] Creating GitHub actions to build ThunderInterfaces on Windo…
…ws (#232) * Update and rename Build ThunderInterfaces.yml to Build ThunderInterfaces on Linux.yml * Create Build ThunderInterfaces on Windows.yml * Updating artifacts paths * Updating checkout and output paths * Changing project and solution paths Apparently devenv can't open solution if not run from the very same folder.. * Prepare for PR and merge * Optimizing runtime no outside actions necessary * More name changes
- Loading branch information
1 parent
1158c6a
commit bd44837
Showing
2 changed files
with
87 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: Build ThunderInterfaces on Windows | ||
|
||
on: | ||
push: | ||
branches: ["master"] | ||
pull_request: | ||
branches: ["master"] | ||
|
||
env: | ||
definitions: ThunderInterfaces\definitions\definitions.vcxproj | ||
devEnv: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\devenv.com | ||
interfaces: ThunderInterfaces\interfaces\Interfaces.vcxproj | ||
solution: Thunder.sln | ||
|
||
jobs: | ||
ThunderInterfaces: | ||
runs-on: windows-latest | ||
|
||
strategy: | ||
matrix: | ||
type: [Debug, Release] | ||
version: [64, 86] | ||
|
||
name: Build type - ${{matrix.type}}${{matrix.version}} | ||
steps: | ||
- name: Checkout ThunderOnWindows | ||
uses: actions/checkout@v3 | ||
with: | ||
path: ThunderOnWindows | ||
repository: WebPlatformForEmbedded/ThunderOnWindows | ||
|
||
- name: Checkout Thunder | ||
uses: actions/checkout@v3 | ||
with: | ||
path: ThunderOnWindows/Thunder | ||
repository: ${{github.repository_owner}}/Thunder | ||
|
||
- name: Checkout ThunderTools | ||
uses: actions/checkout@v3 | ||
with: | ||
path: ThunderOnWindows/ThunderTools | ||
repository: ${{github.repository_owner}}/ThunderTools | ||
|
||
- name: Checkout ThunderClientLibraries | ||
uses: actions/checkout@v3 | ||
with: | ||
path: ThunderOnWindows/ThunderClientLibraries | ||
repository: ${{github.repository_owner}}/ThunderClientLibraries | ||
|
||
- name: Checkout ThunderInterfaces | ||
uses: actions/checkout@v3 | ||
with: | ||
path: ThunderOnWindows/ThunderInterfaces | ||
repository: ${{github.repository_owner}}/ThunderInterfaces | ||
|
||
- name: Checkout ThunderNanoServices | ||
uses: actions/checkout@v3 | ||
with: | ||
path: ThunderOnWindows/ThunderNanoServices | ||
repository: ${{github.repository_owner}}/ThunderNanoServices | ||
|
||
- name: Checkout ThunderNanoServicesRDK | ||
uses: actions/checkout@v3 | ||
with: | ||
path: ThunderOnWindows/ThunderNanoServicesRDK | ||
repository: WebPlatformForEmbedded/ThunderNanoServicesRDK | ||
|
||
- name: Install jsonref | ||
run: pip install jsonref | ||
|
||
- name: Build ThunderInterfaces | ||
shell: cmd | ||
run: | | ||
cd ThunderOnWindows | ||
"%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%definitions%" "%solution%" | ||
"%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%interfaces%" "%solution%" | ||
- name: Tar files | ||
run: tar -czvf ${{matrix.type}}${{matrix.version}}.tar.gz artifacts | ||
|
||
- name: Upload | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ThunderInterfaces-${{matrix.type}}${{matrix.version}}-artifact | ||
path: ${{matrix.type}}${{matrix.version}}.tar.gz |