Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
barakugav committed Aug 23, 2024
1 parent 75fa7f6 commit ffa45be
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/develop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
shell: bash
strategy:
matrix:
runner: [windows-latest, macos-latest, ubuntu-latest]
runner: [ubuntu-latest]
permissions:
contents: read
checks: write
Expand Down Expand Up @@ -51,26 +51,26 @@ jobs:
if: steps.cache-executorch-cpp-libs.outputs.cache-hit != 'true'
run: python scripts/setup_dev.py --skip-executorch-python

############ Build executorch-rs ############
- name: Build
run: cargo build
# ############ Build executorch-rs ############
# - name: Build
# run: cargo build

############ Linters ############
- name: Rust Clippy linter
uses: auguwu/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
# ############ 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
# ############ Tests ############
# - name: Run Rust tests
# run: cargo test --workspace --all-features

############ Examples ############
- name: Run 'hello world add' example
# python export_model.py
run: cargo run
working-directory: examples/hello_world_add
- name: Run 'hello world add no_std' example
# python export_model.py
run: cargo run
working-directory: examples/hello_world_add_no_std
# ############ Examples ############
# - name: Run 'hello world add' example
# # python export_model.py
# run: cargo run
# working-directory: examples/hello_world_add
# - name: Run 'hello world add no_std' example
# # python export_model.py
# run: cargo run
# working-directory: examples/hello_world_add_no_std

0 comments on commit ffa45be

Please sign in to comment.