project layout notes (#172) #489
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: test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build-test: | |
runs-on: macos-latest | |
env: | |
LOCAL_BUILD: true | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.75.0 | |
default: true | |
- name: get xcode information | |
run: | | |
xcodebuild -version | |
swift --version | |
- name: build xcframework | |
run: ./scripts/build-xcframework.sh | |
- name: compress framework | |
run: ./scripts/compress-framework.sh | |
- name: Swift tests | |
run: swift test | |
build-wasm32-unknown-wasi: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.75.0 | |
default: true | |
- run: rustup target add wasm32-wasi | |
- uses: swiftwasm/setup-swiftwasm@v1 | |
with: | |
swift-version: "wasm-5.8.0-RELEASE" | |
- run: cargo build --manifest-path rust/Cargo.toml --target wasm32-wasi --release | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: libuniffi_automerge-wasm32-unknown-wasi.a | |
path: ./rust/target/wasm32-wasi/release/libuniffi_automerge.a | |
- run: swift build --triple wasm32-unknown-wasi | |
rustfmt: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.75.0 | |
default: true | |
components: rustfmt | |
- name: Clippy | |
run: ./scripts/ci/rustfmt.sh | |
clippy: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.75.0 | |
default: true | |
components: clippy | |
- name: Clippy | |
run: ./scripts/ci/clippy.sh |