Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into doc-flutter
Browse files Browse the repository at this point in the history
  • Loading branch information
vivianjeng committed Nov 26, 2024
2 parents 3bf9c40 + 61f6b36 commit a4b603d
Show file tree
Hide file tree
Showing 129 changed files with 4,613 additions and 2,132 deletions.
25 changes: 24 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,17 @@ jobs:
- uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt --all -- --check

cli:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
steps:
- uses: actions/checkout@v4
- name: Install cli
run: |
cd cli
cargo install --path .
mopro --help
test-ffi-halo2:
runs-on: ubuntu-latest
Expand All @@ -46,6 +57,18 @@ jobs:
override: true
- name: Run ffi circom tests
run: cd mopro-ffi && cargo test --features circom --no-default-features
test-ffi-ashlang:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run ffi ashlang tests
run: cd mopro-ffi && cargo test --features ashlang --no-default-features
test-e2e:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
Expand Down Expand Up @@ -179,4 +202,4 @@ jobs:
- name: Setup Android SDK
uses: android-actions/[email protected]
- name: Build android app
run: cd test-e2e/android && ./gradlew build
run: cd test-e2e/android && ./gradlew build
Loading

0 comments on commit a4b603d

Please sign in to comment.