Skip to content

Commit

Permalink
Merge pull request #8 from WildernessLabs/v1.6.0
Browse files Browse the repository at this point in the history
Release 1.6.0
  • Loading branch information
jorgedevs authored Dec 7, 2023
2 parents 062801d + 3357b47 commit d394b96
Show file tree
Hide file tree
Showing 4 changed files with 111 additions and 2 deletions.
80 changes: 80 additions & 0 deletions .github/workflows/develop-ci.yml
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
29 changes: 29 additions & 0 deletions .github/workflows/main-ci.yml
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
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
<None Include="..\..\icon.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Meadow.Foundation.ICs.IOExpanders.Pcx857x" Version="1.5.0" />
<PackageReference Include="Meadow.Foundation.ICs.IOExpanders.Pcx857x" Version="1.6.0" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<AssemblyName>App</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Meadow.F7" Version="1.5.0" />
<PackageReference Include="Meadow.F7" Version="1.6.0" />
<ProjectReference Include="..\..\Driver\Relays.ElectromagneticRelayModule.csproj" />
</ItemGroup>
</Project>

0 comments on commit d394b96

Please sign in to comment.