Skip to content

Commit 169d406

Browse files
committed
Merge remote-tracking branch 'origin/maxd/debugging-breakpoints' into maxd/debugging-breakpoints
2 parents ae91e24 + 6bb5df8 commit 169d406

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

.github/workflows/main.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,22 @@ concurrency:
1010
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
1111

1212
jobs:
13+
check-autogen-diff:
14+
runs-on: ubuntu-latest
15+
container:
16+
image: swift:6.2-noble
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Re-generate auto-generated code checks
20+
run: |
21+
swift run -q --package-path Utilities WasmKitDevUtils
22+
- name: Check for changes
23+
run: |
24+
git config --global --add safe.directory "$GITHUB_WORKSPACE"
25+
git diff --exit-code || {
26+
echo "::error::The auto-generated code utilities changed some files. Please see \`Utilities/README.md\`, re-run the tools, and commit the changes."
27+
exit 1
28+
}
1329
build-macos:
1430
strategy:
1531
matrix:

Sources/WasmKitGDBHandler/WasmKitGDBHandler.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@
44
import Logging
55
import NIOCore
66
import NIOFileSystem
7-
import Synchronization
87
import SystemPackage
98
import WasmKit
10-
import WasmKitWASI
119

1210
extension BinaryInteger {
1311
init?(hexEncoded: Substring) {

0 commit comments

Comments
 (0)