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

Release/0.1 beta #247

Merged
merged 9 commits into from
Sep 14, 2023
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: "weekly"
18 changes: 8 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ env:
jobs:

build:
runs-on: macos-latest
runs-on: ubuntu-latest
name: Build
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup .NET 7
uses: actions/setup-dotnet@v1
- name: Setup .NET 6
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 6.0.x
include-prerelease: true

- uses: actions/setup-java@v2
- uses: actions/setup-java@v3
with:
distribution: 'microsoft'
java-version: '11'
Expand All @@ -42,11 +42,9 @@ jobs:
dotnet workload install android --ignore-failed-sources
dotnet workload install maui-android --ignore-failed-sources
dotnet workload install maui-tizen --ignore-failed-sources
dotnet workload install maui-ios
dotnet workload install maccatalyst

- name: Restore Dependencies
run: dotnet restore Trimble.Modus.Components.sln
run: dotnet restore ./dotnet/src/Modus.sln

- name: Build MAUI Android
run: dotnet build Trimble.Modus.Components.sln -f net7.0-android -c Release --no-restore
run: dotnet build ./dotnet/src/Modus.sln -f net6.0 -c Release --no-restore
Loading