ci: set macosx deployment target to 10.13 #294
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: build-and-test-wasm | |
on: ["push", "pull_request"] | |
jobs: | |
build-and-test: | |
# Ref: https://github.com/actions/runner-images/tree/main/images/linux | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
submodules: "true" | |
- name: Install rust nightly toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: 1.76 | |
override: true | |
components: clippy, rustfmt | |
- name: Unit test | |
working-directory: ./kclvm | |
run: rustup target add wasm32-wasi && make build-wasm | |
shell: bash | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: kcl-wasm | |
if-no-files-found: error | |
path: kclvm/target/wasm32-wasi/release/kclvm_cli_cdylib.wasm |