Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add develop-ci.yml #29

Merged
merged 2 commits into from
Aug 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions .github/workflows/develop-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: Develop Build

on:
workflow_dispatch:
pull_request:
push:
branches: [ develop ]

jobs:
build:

runs-on: windows-latest

steps:
- name: Checkout Meadow.Contracts
uses: actions/checkout@v3
with:
repository: WildernessLabs/Meadow.Contracts
path: Meadow.Contracts
ref: develop

- 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.Core
uses: actions/checkout@v3
with:
repository: WildernessLabs/Meadow.Core
path: Meadow.Core
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.Foundation
uses: actions/checkout@v3
with:
repository: WildernessLabs/Meadow.Foundation
path: Meadow.Foundation
ref: develop

- name: Checkout Meadow.Foundation.mikroBUS
uses: actions/checkout@v3
with:
path: Meadow.Foundation.mikroBUS
ref: develop

- name: Setup .NET SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version:
7.0.x

- name: Build Meadow Foundation mikroBUS
run: dotnet build -c Release Meadow.Foundation.mikroBUS/Source/mikroBUS.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.mikroBUS
uses: actions/checkout@v3
with:
path: Meadow.Foundation.mikroBUS
ref: main

- name: Setup .NET SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version:
7.0.x

- name: Build Meadow.Foundation.mikroBUS
run: dotnet build -c Release Meadow.Foundation.mikroBUS/Source/mikroBUS.sln
Loading