Skip to content

Commit d91aee1

Browse files
committedFeb 13, 2025
feat: various codegen changes
1 parent 1dbf5b4 commit d91aee1

File tree

591 files changed

+13054
-1813
lines changed

Some content is hidden

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

591 files changed

+13054
-1813
lines changed
 

‎.github/workflows/ci.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ on:
1010

1111
jobs:
1212
lint:
13-
name: lint
1413
runs-on: ubuntu-latest
15-
16-
1714
steps:
1815
- uses: actions/checkout@v4
1916

@@ -27,10 +24,9 @@ jobs:
2724

2825
- name: Run lints
2926
run: ./scripts/lint
27+
3028
test:
31-
name: test
3229
runs-on: ubuntu-latest
33-
3430
steps:
3531
- uses: actions/checkout@v4
3632

@@ -43,4 +39,4 @@ jobs:
4339
run: ./scripts/bootstrap
4440

4541
- name: Run tests
46-
run: ./scripts/test
42+
run: ./scripts/test

‎.github/workflows/release.yml ‎.github/workflows/publish-release.yml

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
name: Release
1+
---
2+
name: Publish Release
3+
4+
permissions:
5+
contents: write
6+
7+
concurrency:
8+
group: publish
9+
210
on:
311
push:
412
tags:
@@ -10,8 +18,8 @@ jobs:
1018
- name: Cleanup unused directories and tools
1119
run: |
1220
df -h /
13-
sudo apt-get remove -y '^aspnetcore-.*' '^dotnet-.*' '^llvm-.*' 'php.*' '^mongodb-.*' '^mysql-.*' azure-cli google-chrome-stable firefox powershell mono-devel google-cloud-sdk google-cloud-cli microsoft-edge-stable snapd --fix-missing
14-
sudo apt-get autoremove -y
21+
sudo apt-get remove -y '^aspnetcore-.*' '^dotnet-.*' '^llvm-.*' 'php.*' '^mongodb-.*' '^mysql-.*' azure-cli google-chrome-stable firefox powershell mono-devel google-cloud-sdk google-cloud-cli microsoft-edge-stable snapd --fix-missing
22+
sudo apt-get autoremove -y
1523
sudo apt-get clean
1624
sudo docker image prune --all --force
1725
sudo rm -rf \
@@ -27,7 +35,7 @@ jobs:
2735
/usr/local/share/chromium \
2836
/usr/local/share/powershell \
2937
/usr/share/dotnet \
30-
/usr/share/swift
38+
/usr/share/swift
3139
ghcup nuke
3240
df -h /
3341
- name: Checkout

0 commit comments

Comments
 (0)
Please sign in to comment.