We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e09c186 commit 9d36c21Copy full SHA for 9d36c21
.github/workflows/main.yml
@@ -21,8 +21,12 @@ jobs:
21
- name: Run auto-generated code checks
22
shell: bash
23
run: |
24
- test $(swift run -q --package-path Utilities WasmKitDevUtils wasmgen | wc -l) = "0"
25
- test $(swift run -q --package-path Utilities WasmKitDevUtils vmgen | wc -l) = "0"
+ swift run -q --package-path Utilities WasmKitDevUtils wasmgen >> wasmgen.txt
+ swift run -q --package-path Utilities WasmKitDevUtils vmgen >> vmgen.txt
26
+ cat wasmgen.txt
27
+ cat vmgen.txt
28
+ test -s wasmgen.txt && exit 1
29
+ test -s vmgen.txt && exit 1
30
31
build-macos:
32
strategy:
0 commit comments