Skip to content

Commit

Permalink
ci: fix deps issues (#2643)
Browse files Browse the repository at this point in the history
## Description

cargo-ndk has [known
issues](bbqsrc/cargo-ndk#137) with workspace
setups for versions 3.5.5 and up.

Ensuring docker test runs start with a fresh docker setup.

## Breaking Changes

<!-- Optional, if there are any breaking changes document them,
including how to migrate older code. -->

## Notes & open questions

<!-- Any notes, remarks or open questions you have to make about the PR.
-->

## Change checklist

- [ ] Self-review.
- [ ] Documentation updates following the [style
guide](https://rust-lang.github.io/rfcs/1574-more-api-documentation-conventions.html#appendix-a-full-conventions-text),
if relevant.
- [ ] Tests if relevant.
- [ ] All breaking changes documented.
  • Loading branch information
Arqu authored Aug 19, 2024
1 parent 3964c4a commit fd30db4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
env:
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}
run: |
cargo install cargo-ndk
cargo install --version 3.5.4 cargo-ndk
cargo ndk --target ${{ matrix.target }} build
cross_test:
Expand Down Expand Up @@ -428,6 +428,11 @@ jobs:
- name: Install sccache
uses: mozilla-actions/[email protected]

- name: Cleanup Docker
continue-on-error: true
run: |
docker kill $(docker ps -q)
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

Expand All @@ -447,11 +452,6 @@ jobs:
docker run -p 9090:9090 -p 4919:4919/udp -Pd n0computer/iroh-test:latest --rpc-addr 0.0.0.0:4919 start
cargo run --bin iroh -- --rpc-addr 127.0.0.1:4919 node stats
- name: Cleanup Docker
continue-on-error: true
run: |
docker kill $(docker ps -q)
codespell:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit fd30db4

Please sign in to comment.