[firebase] Update sample and use one binding project #26
Workflow file for this run
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
name: validation | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: build | |
runs-on: macos-14 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use .NET 8.x | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.x' | |
- name: Install JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: microsoft | |
java-version: 17 | |
- name: Use Xcode 15.3 | |
run: sudo xcode-select -s /Applications/Xcode_15.3.app/Contents/Developer | |
- name: Install MAUI | |
run: dotnet workload install maui | |
- name: Install objectivesharpie | |
run: brew install objectivesharpie | |
- name: Create logs dir | |
run: mkdir -p ${{ runner.temp }}/logs/ | |
- name: Build and test build tasks | |
working-directory: ./eng | |
run: >- | |
dotnet test Microsoft.Maui.BindingExtensions.Build.Tasks.sln | |
--logger trx --results-directory ${{ runner.temp }}/logs/TestResults-build-tasks | |
-bl:${{ runner.temp }}/logs/build-tasks.binlog | |
- name: Build facebook | |
working-directory: ./facebook | |
run: dotnet build -m:1 -bl:${{ runner.temp }}/logs/facebook.binlog | |
- name: Build firebase | |
working-directory: ./firebase/macios | |
run: dotnet build -m:1 -bl:${{ runner.temp }}/logs/firebase-macios.binlog | |
- name: Build googlecast | |
working-directory: ./googlecast/macios | |
run: dotnet build -m:1 -bl:${{ runner.temp }}/logs/googlecast-macios.binlog | |
- name: Upload logs | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: build-logs | |
path: ${{ runner.temp }}/logs/ |