Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/parallel_calls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
pull_request:
paths:
- motoko/parallel_calls/**
- rust/parallel_calls/**
- .github/workflows/parallel_calls.yml

concurrency:
Expand Down Expand Up @@ -37,3 +38,32 @@ jobs:
- name: Run multi-subnet PocketIC test
working-directory: motoko/parallel_calls
run: make test-multi-subnet

rust-parallel_calls:
runs-on: ubuntu-24.04
container: ghcr.io/dfinity/icp-dev-env-rust:1.0.0
env:
ICP_CLI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Deploy and test
working-directory: rust/parallel_calls
run: |
icp network start -d
icp deploy
make test

rust-parallel_calls-multi-subnet:
runs-on: ubuntu-24.04
container: ghcr.io/dfinity/icp-dev-env-rust:1.0.0
env:
ICP_CLI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Install PocketIC server
uses: dfinity/pocketic@20c33db1aa87cc6ece50857ac632c37acf5e0322 # main
with:
pocket-ic-server-version: "7.0.0"
- name: Run multi-subnet PocketIC test
working-directory: rust/parallel_calls
run: make test-multi-subnet
69 changes: 0 additions & 69 deletions .github/workflows/rust-parallel-calls-example.yml

This file was deleted.

Loading
Loading