From ffa45be481e9f8cc1b5b4cd35ada5896bb9fac4d Mon Sep 17 00:00:00 2001 From: Barak Ugav Date: Fri, 23 Aug 2024 15:40:25 +0300 Subject: [PATCH] temp --- .github/workflows/develop.yaml | 42 +++++++++++++++++----------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/develop.yaml b/.github/workflows/develop.yaml index d1e698f..3cbedd3 100644 --- a/.github/workflows/develop.yaml +++ b/.github/workflows/develop.yaml @@ -16,7 +16,7 @@ jobs: shell: bash strategy: matrix: - runner: [windows-latest, macos-latest, ubuntu-latest] + runner: [ubuntu-latest] permissions: contents: read checks: write @@ -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/clippy-action@1.4.0 - with: - token: ${{ secrets.GITHUB_TOKEN }} + # ############ Linters ############ + # - name: Rust Clippy linter + # uses: auguwu/clippy-action@1.4.0 + # 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