Skip to content

Commit

Permalink
Merge branch 'main' into api-examples-pt7
Browse files Browse the repository at this point in the history
  • Loading branch information
lcawl authored Dec 3, 2024
2 parents 210b99d + 0b00127 commit 0643ef6
Show file tree
Hide file tree
Showing 278 changed files with 19,411 additions and 9,894 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -233,5 +233,6 @@ dist/* binary
### Linguist Overrides #############################################################################

output/** linguist-generated=true
output/schema/validation-errors.json linguist-generated=false

####################################################################################################
36 changes: 36 additions & 0 deletions .github/workflows/compiler-rs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Cargo Build & Test

on:
pull_request:

env:
CARGO_TERM_COLOR: always

jobs:
build_and_test:
name: compiler-rs
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install deps
run: |
make setup
make generate
make transform-to-openapi
make transform-expand-generics
- name: Install Rust
run: rustup update stable && rustup default stable

- run: cargo build --verbose
working-directory: compiler-rs

- run: cargo test --verbose
working-directory: compiler-rs
2 changes: 1 addition & 1 deletion .github/workflows/update-rest-api-json.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
branch: ['main', '8.x', '8.15', '7.17']
branch: ['main', '8.x', '8.16', '8.17', 7.17']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
else
branch=$GITHUB_REF_NAME
fi
node scripts/upload-recording/download.js --branch $branch
node scripts/upload-recording/download.js --branch $branch --git
node scripts/clone-elasticsearch/index.js --branch $branch
env:
GCS_CREDENTIALS: ${{ secrets.GCS_CREDENTIALS }}
Expand Down
Loading

0 comments on commit 0643ef6

Please sign in to comment.