-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
query-engine-wasm: Fix build & ensure it stays fixed (#4488)
* query-engine-wasm: Fix build & ensure it stays fixed Current version in main does not compile to wasm correctly. This PR fixes the error and adds CI check to ensure it compiles before it is merged. * Add name to the job * Update .github/workflows/qe-wasm-check.yml Co-authored-by: Joël Galeran <[email protected]> --------- Co-authored-by: Joël Galeran <[email protected]>
- Loading branch information
Showing
2 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: WASM engine compile check | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
paths-ignore: | ||
- '.github/**' | ||
- '!.github/workflows/qe-wasm-check.yml' | ||
- '.buildkite/**' | ||
- '*.md' | ||
- 'LICENSE' | ||
- 'CODEOWNERS' | ||
- 'renovate.json' | ||
|
||
jobs: | ||
build: | ||
name: 'Compilation check for query-engine-wasm' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- name: Install wasm-pack | ||
run: cargo install wasm-pack | ||
- name: Build wasm query engine | ||
run: ./build.sh | ||
working-directory: ./query-engine/query-engine-wasm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters