Skip to content

Commit

Permalink
Update unit-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Toumash authored Jul 17, 2024
1 parent df0b49d commit 8178c6a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,22 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
e2e:
name: e2e test
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install Protoc
uses: arduino/setup-protoc@v2 # for grpc
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run e2e test
env:
RUUSTER_HOME_DIR: ./
RUUSTER_BUILD_DIR: ./
run: cd $RUUSTER_HOME_DIR; RUST_LOG=info $RUUSTER_BUILD_DIR/run_scenario --server-addr "http://127.0.0.1:50051" --config-file "$RUUSTER_HOME_DIR/apps/src/test_client/scenarios/all_consumers.json" --builder-bin "$RUUSTER_BUILD_DIR/scenario_builder" --consumer-bin "$RUUSTER_BUILD_DIR/consumer" --producer-bin "$RUUSTER_BUILD_DIR/producer"

0 comments on commit 8178c6a

Please sign in to comment.