We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ae0744 commit e8a75e5Copy full SHA for e8a75e5
2 files changed
.github/workflows/build-avalonia-editor.yml
@@ -75,7 +75,7 @@ jobs:
75
sudo apt-get install clang lld
76
- name: Build
77
run: |
78
- dotnet build build/Stride.Editor.Avalonia.slnf
+ dotnet build build/Stride.Editor.Avalonia.slnf \
79
-m:1 -nr:false \
80
-v:m -p:WarningLevel=0 \
81
-p:Configuration=${{ needs.Setup.outputs.build-type }} \
.github/workflows/main.yml
@@ -90,3 +90,16 @@ jobs:
90
with:
91
build-type: ${{ matrix.build-type }}
92
test-category: ${{ matrix.test-category }}
93
+
94
+ ### Editor ###
95
+ Editor:
96
+ needs: [Linux-Runtime, Windows-Runtime]
97
+ strategy:
98
+ matrix:
99
+ build-type: [Release]
100
+ platform: [Linux, Windows]
101
+ uses: ./.github/workflows/build-avalonia-editor.yml
102
+ secrets: inherit
103
+ with:
104
+ build-type: ${{ matrix.build-type }}
105
+ platform: ${{ matrix.platform }}
0 commit comments