Skip to content
Merged
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,23 @@ concurrency:
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
check-autogen-diff:
runs-on: ubuntu-latest
container:
image: swift:6.2-noble
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Run auto-generated code checks
run: |
swift run -q --package-path Utilities WasmKitDevUtils wasmgen >> wasmgen.txt
swift run -q --package-path Utilities WasmKitDevUtils vmgen >> vmgen.txt
cat wasmgen.txt
cat vmgen.txt
test -s wasmgen.txt && echo '⚠️ Uncommitted changes made by `WasmKitDevUtils wasmgen`' && exit 1
test -s vmgen.txt && echo '⚠️ Uncommitted changes made by `WasmKitDevUtils vmgen`' && exit 1

build-macos:
strategy:
matrix:
Expand Down
Loading