Skip to content

refactor: update .linux-setup.sh permissions and install additional d… #754

refactor: update .linux-setup.sh permissions and install additional d…

refactor: update .linux-setup.sh permissions and install additional d… #754

Workflow file for this run

name: Check PR
on:
pull_request:
branches: [main]
push:
branches: [main, chore/ci-wasm-build]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-wasm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Setup
run: make linux-setup
- name: Build WASM
run: make wasm
- name: Upload WASM Artifacts
uses: actions/upload-artifact@v4
with:
name: dotlottie-player.wasm.tar.gz
path: release/wasm/dotlottie-player.wasm.tar.gz
if-no-files-found: error
check-pr:
if: github.head_ref != 'release'
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v4
- name: Setup Rust
uses: ningenMe/[email protected]
- name: Setup Conan
uses: turtlebrowser/get-conan@main
- name: Build
run: |
cargo build --manifest-path=./dotlottie-rs/Cargo.toml --release
cargo build --manifest-path=./dotlottie-ffi/Cargo.toml --release
- name: Test
run: |
cargo test --manifest-path=./dotlottie-rs/Cargo.toml --release -- --test-threads=1
cargo test --manifest-path=./dotlottie-ffi/Cargo.toml --release -- --test-threads=1
- name: Lint
run: |
cargo clippy --manifest-path=./dotlottie-rs/Cargo.toml --all-targets --all-features -- -D clippy::print_stdout
cargo clippy --manifest-path=./dotlottie-ffi/Cargo.toml --all-targets --all-features -- -D clippy::print_stdout
env:
RUSTFLAGS: "-Dwarnings"