Skip to content

Commit 0643ef6

Browse files
authored
Merge branch 'main' into api-examples-pt7
2 parents 210b99d + 0b00127 commit 0643ef6

File tree

278 files changed

+19411
-9894
lines changed

Some content is hidden

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

278 files changed

+19411
-9894
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,5 +233,6 @@ dist/* binary
233233
### Linguist Overrides #############################################################################
234234

235235
output/** linguist-generated=true
236+
output/schema/validation-errors.json linguist-generated=false
236237

237238
####################################################################################################

.github/workflows/compiler-rs.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Cargo Build & Test
2+
3+
on:
4+
pull_request:
5+
6+
env:
7+
CARGO_TERM_COLOR: always
8+
9+
jobs:
10+
build_and_test:
11+
name: compiler-rs
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Use Node.js 20
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: 20
21+
22+
- name: Install deps
23+
run: |
24+
make setup
25+
make generate
26+
make transform-to-openapi
27+
make transform-expand-generics
28+
29+
- name: Install Rust
30+
run: rustup update stable && rustup default stable
31+
32+
- run: cargo build --verbose
33+
working-directory: compiler-rs
34+
35+
- run: cargo test --verbose
36+
working-directory: compiler-rs

.github/workflows/update-rest-api-json.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
branch: ['main', '8.x', '8.15', '7.17']
16+
branch: ['main', '8.x', '8.16', '8.17', 7.17']
1717

1818
steps:
1919
- uses: actions/checkout@v4

.github/workflows/validate-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
else
6060
branch=$GITHUB_REF_NAME
6161
fi
62-
node scripts/upload-recording/download.js --branch $branch
62+
node scripts/upload-recording/download.js --branch $branch --git
6363
node scripts/clone-elasticsearch/index.js --branch $branch
6464
env:
6565
GCS_CREDENTIALS: ${{ secrets.GCS_CREDENTIALS }}

0 commit comments

Comments
 (0)