-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1604ce
commit 7d224f0
Showing
1 changed file
with
56 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Build Android | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
env: | ||
Solution_Name_MB: "Media Blocks SDK/VisioForge.MediaBlocks.Demos.CS Android.sln" | ||
|
||
Solution_Name_MP: "Media Player SDK X (crossplatform)/VisioForge.MediaPlayer.X.Demos.CS.Android.sln" | ||
|
||
Solution_Name_VC: "Video Capture SDK X (crossplatform)/VisioForge.VideoCaptureX.Demos.CS Android.sln" | ||
|
||
runs-on: windows-2022 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: | | ||
8.0.x | ||
- name: Install workloads | ||
run: dotnet workload install android | ||
|
||
- name: Add msbuild to PATH | ||
uses: microsoft/[email protected] | ||
|
||
## Media Blocks | ||
|
||
- name: Restore dependencies $env:Solution_Name_MB | ||
run: dotnet restore $env:Solution_Name_MB | ||
|
||
- name: Build app for release $env:Solution_Name_MB | ||
run: msbuild $env:Solution_Name_MB -t:rebuild -verbosity:diag -property:Configuration=Release | ||
|
||
## Media Player | ||
|
||
- name: Restore dependencies $env:Solution_Name_MP | ||
run: dotnet restore $env:Solution_Name_MP | ||
|
||
- name: Build app for release $env:Solution_Name_MP | ||
run: msbuild $env:Solution_Name_MP -t:rebuild -verbosity:diag -property:Configuration=Release | ||
|
||
## Video Capture | ||
|
||
- name: Restore dependencies $env:Solution_Name_VC | ||
run: dotnet restore $env:Solution_Name_VC | ||
|
||
- name: Build app for release $env:Solution_Name_VC | ||
run: msbuild $env:Solution_Name_VC -t:rebuild -verbosity:diag -property:Configuration=Release |