-
-
Notifications
You must be signed in to change notification settings - Fork 269
37 lines (30 loc) · 886 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: CI
on: [push, pull_request]
jobs:
linux:
name: Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: make FNA
run: |
make debug
make release
- name: msbuild FNA
run: |
msbuild FNA.sln /p:Configuration=Debug /p:Platform=x86
msbuild FNA.sln /p:Configuration=Release /p:Platform=x86
- name: dotnet build FNA.Core
run: |
dotnet build -c Debug FNA.Core.csproj
dotnet build -c Release FNA.Core.csproj
- name: dotnet build FNA.NetFramework
run: |
dotnet build -c Debug FNA.NetFramework.csproj
dotnet build -c Release FNA.NetFramework.csproj
- name: dotnet build FNA.NetStandard
run: |
dotnet build -c Debug FNA.NetStandard.csproj
dotnet build -c Release FNA.NetStandard.csproj