Skip to content

Commit

Permalink
Merge branch 'main' into bindgen_next
Browse files Browse the repository at this point in the history
  • Loading branch information
lwshang committed Jun 13, 2024
2 parents 7a10061 + 7fa27b0 commit c29bc3e
Show file tree
Hide file tree
Showing 26 changed files with 1,515 additions and 429 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ jobs:
test:
name: cargo test
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-12]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -57,11 +60,12 @@ jobs:
restore-keys: |
${{ runner.os }}-test-
${{ runner.os }}-
- name: Download ic-test-state-machine
- name: Download pocket-ic
run: |
bash scripts/download_state_machine_binary.sh
bash scripts/download_pocket_ic.sh
- name: Run tests
run: | # https://github.com/rust-lang/cargo/issues/6669 we have to run ALL tests with two commands
run:
| # https://github.com/rust-lang/cargo/issues/6669 we have to run ALL tests with two commands
cargo test --all-targets
cargo test --doc

Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ examples/*/Cargo.lock
**/*.rs.bk
.DS_Store

ic-test-state-machine
e2e-tests/pocket-ic

# Generated bindings
**/declarations/
Loading

0 comments on commit c29bc3e

Please sign in to comment.