-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from WildernessLabs/v1.6.0
Release 1.6.0
- Loading branch information
Showing
4 changed files
with
111 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: Develop Build | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
branches: [ develop ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: windows-latest | ||
|
||
steps: | ||
|
||
- name: enable long paths | ||
run: git config --system core.longpaths true | ||
|
||
- name: Checkout Meadow.Logging | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: WildernessLabs/Meadow.Logging | ||
path: Meadow.Logging | ||
ref: develop | ||
|
||
- name: Checkout Meadow.Units | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: WildernessLabs/Meadow.Units | ||
path: Meadow.Units | ||
ref: develop | ||
|
||
- name: Checkout Meadow.Contracts | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: WildernessLabs/Meadow.Contracts | ||
path: Meadow.Contracts | ||
ref: develop | ||
|
||
- name: Checkout MQTTnet | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: WildernessLabs/MQTTnet | ||
path: MQTTnet | ||
ref: develop | ||
|
||
- name: Checkout Meadow.Modbus | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: WildernessLabs/Meadow.Modbus | ||
path: Meadow.Modbus | ||
ref: develop | ||
|
||
- name: Checkout Meadow.Core | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: WildernessLabs/Meadow.Core | ||
path: Meadow.Core | ||
ref: develop | ||
|
||
- name: Checkout Meadow.Foundation | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: WildernessLabs/Meadow.Foundation | ||
path: Meadow.Foundation | ||
ref: develop | ||
|
||
- name: Checkout Meadow.Foundation.CompositeDevices | ||
uses: actions/checkout@v3 | ||
with: | ||
path: Meadow.Foundation.CompositeDevices | ||
|
||
- name: Setup .NET SDK | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: | ||
7.0.x | ||
|
||
- name: Build Meadow.Foundation.CompositeDevices | ||
run: dotnet build -c Release Meadow.Foundation.CompositeDevices/Source/CompositeDevices.sln |
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,29 @@ | ||
name: Main Build | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: windows-latest | ||
|
||
steps: | ||
|
||
- name: Checkout Meadow.Foundation.CompositeDevices | ||
uses: actions/checkout@v3 | ||
with: | ||
path: Meadow.Foundation.CompositeDevices | ||
ref: main | ||
|
||
- name: Setup .NET SDK | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: | ||
7.0.x | ||
|
||
- name: Build Meadow.Foundation.CompositeDevices | ||
run: dotnet build -c Release Meadow.Foundation.CompositeDevices/Source/CompositeDevices.sln |
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