Refactor of stream_all_messages, fix flaky stream tests #2771
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
name: Test | |
runs-on: warp-ubuntu-latest-x64-16x | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Update rust toolchain from rust-toolchain file | |
run: rustup update | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: | | |
. | |
bindings_ffi | |
bindings_flutter | |
- name: Start Docker containers | |
run: dev/up | |
- name: Run cargo test on main workspace | |
uses: actions-rs/cargo@v1 | |
timeout-minutes: 20 | |
with: | |
command: test | |
args: -- --test-threads=2 | |
- name: Setup Kotlin | |
run: | | |
sudo apt update -q | |
sudo apt install -y openjdk-11-jdk | |
sudo snap install --classic kotlin | |
cd bindings_ffi | |
make install-jar | |
echo "$(make echo-jar | tail -n 1 | sed -e 's/\.*export //')" >> "$GITHUB_ENV" | |
- name: Run cargo test on FFI bindings | |
run: | | |
export CLASSPATH="${{ env.CLASSPATH }}" | |
cargo test --manifest-path bindings_ffi/Cargo.toml -- --test-threads=2 |