temp: set foreign_key_checks=0 on mysql soft reset #216
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
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 |