Skip to content

Commit

Permalink
[Actions] Creating GitHub actions to build ThunderInterfaces on Windo…
Browse files Browse the repository at this point in the history
…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
VeithMetro authored Feb 21, 2023
1 parent 1158c6a commit bd44837
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CMake ThunderInterfaces
name: Build ThunderInterfaces on Linux

on:
push:
Expand All @@ -11,7 +11,7 @@ jobs:
Thunder:
uses: rdkcentral/Thunder/.github/workflows/Build Thunder on Linux.yml@master

Interfaces:
ThunderInterfaces:
needs: Thunder

runs-on: ubuntu-latest
Expand Down
85 changes: 85 additions & 0 deletions .github/workflows/Build ThunderInterfaces on Windows.yml
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

0 comments on commit bd44837

Please sign in to comment.