Skip to content
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
20 changes: 5 additions & 15 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ on:

jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.os == 'ubuntu-latest' }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
os: [windows-latest, ubuntu-latest]

runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.os != 'Windows' }}
env:
DOTNET_NOLOGO: true

Expand All @@ -25,7 +26,6 @@ jobs:
- uses: actions/setup-dotnet@v4
with:
dotnet-version: |
7.0.x
8.0.x

- run: dotnet --info
Expand All @@ -36,7 +36,7 @@ jobs:
if: ${{ runner.os == 'Windows' }}

## Only difference here is not forcing cmd
- name: Build (ubuntu & macos)
- name: Build (linux based)
run: ./build ci
if: ${{ runner.os != 'Windows' }}

Expand All @@ -45,13 +45,3 @@ jobs:

- name: Test - PAModel
run: dotnet bin/Debug/PAModelTests/PAModelTests.dll

- name: Restore workloads for samples
run: dotnet workload restore samples/MauiMsApp/MauiMsApp.csproj

- name: Install maui-tizen workload
run: dotnet workload install maui-tizen

- name: Build samples
run: dotnet build samples/samples.sln
if: ${{ runner.os == 'Windows' }}
4 changes: 3 additions & 1 deletion samples/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Samples for Power Apps

> NOTICE: This samples folder depends on the no longer supported 'Preview Schema' (aka PaYamlV2) and is no longer supported or built.
Samples for creating, reading, and updating files containing Power Apps (*.msapp)

## Prerequisites
Expand Down Expand Up @@ -31,4 +33,4 @@ List of screens in the MsApp file:
## Potential Errors
If you see the following Error:
"The project doesn't know how to run the profile with the name 'Windows Machine' and command 'MsixPackage'."
ensure that you have '.NET Multi-platform App UI development' installed through Visual Studio.
ensure that you have '.NET Multi-platform App UI development' installed through Visual Studio.
15 changes: 0 additions & 15 deletions src/Persistence.Tests/Extensions/IYamlDeserializerExtensions.cs

This file was deleted.

27 changes: 0 additions & 27 deletions src/Persistence.Tests/Model/CustomPropertyTests.cs

This file was deleted.

20 changes: 0 additions & 20 deletions src/Persistence.Tests/Model/InvalidControls.cs

This file was deleted.

137 changes: 0 additions & 137 deletions src/Persistence.Tests/MsApp/MsappArchiveSaveTests.cs

This file was deleted.

Loading
Loading