-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat (github-actions.yml): we now target dotnet-workload version 8.0.402
the dotnet-workload-version is now an environment variable clearly visible at the top of the github actions file
- Loading branch information
1 parent
fa58473
commit 3038428
Showing
3 changed files
with
33 additions
and
15 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
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 |
---|---|---|
|
@@ -690,6 +690,8 @@ git clone [email protected]:Laerdal-Medical/Laerdal.McuMgr.git --branch deve | |
|
||
```bash | ||
# cd into the root folder of the repo | ||
WORKLOAD_VERSION=8.0.402 \ | ||
&& \ | ||
sudo dotnet \ | ||
workload \ | ||
install \ | ||
|
@@ -701,12 +703,14 @@ sudo dotnet \ | |
maui-tizen \ | ||
maui-android \ | ||
maui-maccatalyst \ | ||
--version "${WORKLOAD_VERSION}" \ | ||
&& \ | ||
cd "Laerdal.McuMgr.Bindings.iOS" \ | ||
&& \ | ||
sudo dotnet \ | ||
workload \ | ||
restore \ | ||
--version "${WORKLOAD_VERSION}" \ | ||
&& \ | ||
cd - \ | ||
&& \ | ||
|
@@ -715,6 +719,7 @@ cd "Laerdal.McuMgr.Bindings.MacCatalyst" \ | |
sudo dotnet \ | ||
workload \ | ||
restore \ | ||
--version "${WORKLOAD_VERSION}" \ | ||
&& \ | ||
cd - \ | ||
&& \ | ||
|
@@ -723,6 +728,7 @@ cd "Laerdal.McuMgr.Bindings.Android" \ | |
sudo dotnet \ | ||
workload \ | ||
restore \ | ||
--version "${WORKLOAD_VERSION}" \ | ||
&& \ | ||
cd - | ||
|
||
|