Skip to content

Avoid bitwise moving of CPP Module #61

Avoid bitwise moving of CPP Module

Avoid bitwise moving of CPP Module #61

Workflow file for this run

name: Development CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
permissions:
contents: read
checks: write
steps:
############ Setup ############
- name: Repo checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.77.0
components: clippy
# - name: Install Python
# uses: actions/setup-python@v5
# with:
# python-version: "3.12"
# cache: pip
# token: ${{ secrets.GITHUB_TOKEN }}
# - name: Install Python requirements
# run: pip install -r scripts/requirements.txt
############ Install executorch deps ############
- name: Cache Cpp ExecuTorch compiled libraries
id: cache-executorch-cpp-libs
uses: actions/cache@v4
with:
path: executorch-sys/third-party/executorch/cmake-out
key: cache-executorch-cpp-libs-${{ runner.OS }}-${{ hashFiles('scripts/setup_dev.py') }}
- name: Setup dev env, install executorch and its deps
if: steps.cache-executorch-cpp-libs.outputs.cache-hit != 'true'
run: python scripts/setup_dev.py --skip-executorch-python
- name: Set up Clang
uses: egor-tensin/setup-clang@v1
- run: c++ --version
############ Build executorch-rs ############
# - name: Build
# run: cargo build
############ Linters ############
# - name: Rust Clippy linter
# uses: auguwu/[email protected]
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
############ Tests ############
# - name: Run Rust tests
# run: cargo test --workspace --all-features
############ Examples ############
- name: Run 'hello world add' example
# python export_model.py
run: RUST_BACKTRACE=full cargo run
working-directory: examples/hello_world_add
- name: Run 'hello world add no_std' example
# python export_model.py
run: RUST_BACKTRACE=full cargo run
working-directory: examples/hello_world_add_no_std