Skip to content

Commit

Permalink
Merge pull request #247 from trimble-oss/release/0.1-beta
Browse files Browse the repository at this point in the history
Release/0.1 beta
  • Loading branch information
rthanga1 authored Sep 14, 2023
2 parents 321354b + 191ba76 commit 2ed814b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
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

0 comments on commit 2ed814b

Please sign in to comment.