Skip to content

Commit 54bf44a

Browse files
authored
Merge branch 'main' into arm64-fix-csproj
2 parents 6ea696a + 8d90167 commit 54bf44a

File tree

110 files changed

+6122
-5346
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+6122
-5346
lines changed

.github/workflows/bindings-regeneration.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ jobs:
2323
with:
2424
java-version: 11
2525
distribution: "temurin"
26+
- name: Setup .NET 7.0
27+
uses: actions/setup-dotnet@v1
28+
with:
29+
dotnet-version: 7.0.102
2630
- name: Setup .NET 6.0
2731
uses: actions/setup-dotnet@v1
2832
with:
@@ -45,12 +49,12 @@ jobs:
4549
with:
4650
sdk-version: 22621
4751
- name: Run a full run of BuildTools
48-
run: dotnet run -c Release --project src/Core/Silk.NET.BuildTools/Silk.NET.BuildTools.csproj -- --no-parallel
52+
run: dotnet run -c Release --project src/Core/Silk.NET.BuildTools/Silk.NET.BuildTools.csproj -- generator.json --no-parallel
4953
- name: Get current date
5054
id: date
5155
run: echo "::set-output name=date::$(date +'%d-%m-%Y')"
5256
- name: Create or Update Pull Request
53-
uses: gr2m/create-or-update-pull-request-action@master
57+
uses: gr2m/create-or-update-pull-request-action@v1
5458
env:
5559
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5660
with:

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ on:
1212
# all branches
1313
paths-ignore:
1414
- 'documentation/**'
15+
merge_group:
16+
types: [checks_requested]
17+
1518
jobs:
1619
Build:
1720
# This will:

.github/workflows/public-api.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,12 @@ jobs:
3838
.tmp
3939
~/.nuget/packages
4040
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }}
41-
- name: Setup .NET 6.0
42-
uses: actions/setup-dotnet@v1
41+
- name: Setup .NET 6.0 and .NET 7.0
42+
uses: actions/setup-dotnet@v3.0.3
4343
with:
44-
dotnet-version: 6.0.201
44+
dotnet-version: |
45+
6.0.201
46+
7.0.*
4547
- name: Install Workloads for Restore
4648
# TODO: This is slow. Maybe we can make a docker container with this already done?
4749
run: dotnet workload install android ios maccatalyst maui
@@ -68,10 +70,12 @@ jobs:
6870
.tmp
6971
~/.nuget/packages
7072
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }}
71-
- name: Setup .NET 6.0
72-
uses: actions/setup-dotnet@v1
73+
- name: Setup .NET 6.0 and .NET 7.0
74+
uses: actions/setup-dotnet@v3.0.3
7375
with:
74-
dotnet-version: 6.0.201
76+
dotnet-version: |
77+
6.0.201
78+
7.0.*
7579
- name: Ship Public API
7680
run: ./build.sh ShipApi
7781
env:

build/cache/assimp.json.gz

0 Bytes
Binary file not shown.

build/cache/cl.json.gz

0 Bytes
Binary file not shown.

build/cache/d3d9.json.gz

0 Bytes
Binary file not shown.

build/cache/dcomp.json.gz

0 Bytes
Binary file not shown.

build/cache/dstorage.json.gz

0 Bytes
Binary file not shown.

build/cache/dxc.json.gz

0 Bytes
Binary file not shown.

build/cache/dxva.json.gz

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)