-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5420ca4
commit e8196b9
Showing
1 changed file
with
28 additions
and
10 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 |
---|---|---|
|
@@ -10,13 +10,31 @@ env: | |
productNamespacePrefix: "ReactiveMvvm" | ||
|
||
jobs: | ||
build: | ||
uses: reactiveui/actions-common/.github/workflows/workflow-common-setup-and-build.yml@main | ||
with: | ||
configuration: Release | ||
productNamespacePrefix: "ReactiveMvvm" | ||
useVisualStudioPreview: false | ||
useMauiCheckDotNetTool: false | ||
installWindowsSdk: false | ||
installWorkflows: false | ||
solutionFile: 'ReactiveMvvm.sln' | ||
windows-latest: | ||
name: windows-latest | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: 'Setup Java JDK 11' | ||
uses: actions/[email protected] | ||
with: | ||
distribution: 'microsoft' | ||
java-version: '11' | ||
|
||
- name: 'Install DotNet workloads' | ||
shell: bash | ||
run: | | ||
dotnet workload install android ios tvos macos maui maccatalyst wasm-tools-net7 | ||
- name: 'Cache: .nuke/temp, ~/.nuget/packages' | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
.nuke/temp | ||
~/.nuget/packages | ||
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }} | ||
- name: 'Run: RunInteractive' | ||
run: ./build.cmd RunInteractive |