Skip to content

Commit 4621cca

Browse files
committed
Merge branch 'master' into extend-20293
2 parents d600aa9 + f1c1567 commit 4621cca

14,691 files changed

Lines changed: 581415 additions & 81375 deletions

File tree

Some content is hidden

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

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ assignees: ''
1010
#### Bug Report Checklist
1111

1212
- [ ] Have you provided a full/minimal spec to reproduce the issue?
13-
- [ ] Have you validated the input using an OpenAPI validator ([example](https://apidevtools.org/swagger-parser/online/))?
13+
- [ ] Have you validated the input using an OpenAPI validator ([example](https://apitools.dev/swagger-parser/online/))?
1414
- [ ] Have you [tested with the latest master](https://github.com/OpenAPITools/openapi-generator/wiki/FAQ#how-to-test-with-the-latest-master-of-openapi-generator) to confirm the issue still exists?
1515
- [ ] Have you searched for related issues/PRs?
1616
- [ ] What's the actual output vs expected output?

.github/workflows/linux.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
${{ runner.os }}-gradle-
4646
4747
- name: Setup Maven
48-
uses: s4u/setup-maven-action@v1.17.0
48+
uses: s4u/setup-maven-action@v1.18.0
4949
with:
5050
java-version: ${{ matrix.java }}
5151
maven-version: 3.8.8
@@ -87,7 +87,7 @@ jobs:
8787
- name: Check out code
8888
uses: actions/checkout@v4
8989
- name: Setup Maven
90-
uses: s4u/setup-maven-action@v1.17.0
90+
uses: s4u/setup-maven-action@v1.18.0
9191
with:
9292
java-version: 11
9393
maven-version: 3.8.8

.github/workflows/samples-aspnet-fastenpoints-server.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- samples/server/petstore/aspnet/fastendpoints-useValidators
2727
steps:
2828
- uses: actions/checkout@v4
29-
- uses: actions/setup-dotnet@v4.1.0
29+
- uses: actions/setup-dotnet@v4.2.0
3030
with:
3131
dotnet-version: '8.0.x'
3232
- name: Build

.github/workflows/samples-dotnet-standard.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
jobs:
1717
build:
1818
name: Build .Net projects
19-
runs-on: ubuntu-latest
19+
runs-on: windows-latest
2020
strategy:
2121
fail-fast: false
2222
matrix:
@@ -28,7 +28,7 @@ jobs:
2828
# - samples/client/petstore/csharp/unityWebRequest/standard2.0/Petstore/
2929
steps:
3030
- uses: actions/checkout@v4
31-
- uses: actions/setup-dotnet@v4.1.0
31+
- uses: actions/setup-dotnet@v4.2.0
3232
with:
3333
dotnet-version: 3.1.*
3434
- name: Build

.github/workflows/samples-dotnet.yaml

Lines changed: 0 additions & 48 deletions
This file was deleted.

.github/workflows/samples-dotnet6-client-echo-api.yaml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/workflows/samples-dotnet6-client.yaml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/samples-dotnet6-server.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- samples/server/petstore/aspnetcore-6.0-useSwashBuckle
2626
steps:
2727
- uses: actions/checkout@v4
28-
- uses: actions/setup-dotnet@v4.1.0
28+
- uses: actions/setup-dotnet@v4.2.0
2929
with:
3030
dotnet-version: '6.0.x'
3131
- name: Build
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Samples C# .Net 8 Client Echo API
2+
3+
on:
4+
push:
5+
paths:
6+
- samples/client/echo_api/csharp/restsharp/net8/**
7+
pull_request:
8+
paths:
9+
- samples/client/echo_api/csharp/restsharp/net8/**
10+
jobs:
11+
build:
12+
name: Build .Net clients
13+
runs-on: ubuntu-latest
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
sample:
18+
# clients
19+
- samples/client/echo_api/csharp/restsharp/net8/EchoApi
20+
steps:
21+
- uses: actions/checkout@v4
22+
- uses: actions/setup-dotnet@v4.2.0
23+
with:
24+
dotnet-version: '8.0.x'
25+
- name: Run echo server
26+
run: |
27+
git clone https://github.com/wing328/http-echo-server -b openapi-generator-test-server
28+
(cd http-echo-server && npm install && npm start &)
29+
- name: Build
30+
working-directory: ${{ matrix.sample }}
31+
run: |
32+
dotnet build Org.OpenAPITools.sln
33+
dotnet test Org.OpenAPITools.sln
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Samples C# .Net 8 Client
2+
3+
on:
4+
push:
5+
paths:
6+
- samples/client/petstore/csharp/restsharp/net8/**
7+
pull_request:
8+
paths:
9+
- samples/client/petstore/csharp/restsharp/net8/**
10+
jobs:
11+
build:
12+
name: Build .Net clients
13+
runs-on: ubuntu-latest
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
sample:
18+
- samples/client/petstore/csharp/restsharp/net8/ParameterMappings/
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: actions/setup-dotnet@v4.2.0
22+
with:
23+
dotnet-version: '8.0.x'
24+
- name: Build
25+
working-directory: ${{ matrix.sample }}
26+
run: dotnet build Org.OpenAPITools.sln

0 commit comments

Comments
 (0)