Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add schema folder to ls echo. Comment out thins that consume CI minutes
Browse files Browse the repository at this point in the history
abaskk-msft committed Jul 2, 2024
1 parent 78a15ae commit b48df29
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -40,18 +40,18 @@ jobs:
run: ./build ci
if: ${{ runner.os != 'Windows' }}

- name: Test - Persistence
run: dotnet bin/Debug/Persistence.Tests/Persistence.Tests.dll
#- name: Test - Persistence
# run: dotnet bin/Debug/Persistence.Tests/Persistence.Tests.dll

- name: Test - YamlValidator
run: dotnet bin/Debug/YamlValidator.Tests/YamlValidator.Tests.dll

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

- name: Test - Persistence Test Yaml Files (ubuntu & macos)
run: |
echo $(ls bin/Debug/YamlValidator)
echo $(ls bin/Debug/YamlValidator/schema)
resultApp=$(sudo dotnet bin/Debug/YamlValidator/YamlValidator.dll validate --path "bin/Debug/Persistence.Tests/_TestData/AppsWithYaml")
echo "$resultApp"
if [ "$resultApp" == *"Validation Failed"* ]; then
@@ -66,12 +66,12 @@ jobs:
fi
if: ${{ runner.os != 'Windows' }}

- name: Restore workloads for samples
run: dotnet workload restore samples/MauiMsApp/MauiMsApp.csproj
#- 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: Install maui-tizen workload
# run: dotnet workload install maui-tizen

- name: Build samples
run: dotnet build samples/samples.sln
if: ${{ runner.os == 'Windows' }}
#- name: Build samples
# run: dotnet build samples/samples.sln
# if: ${{ runner.os == 'Windows' }}

0 comments on commit b48df29

Please sign in to comment.