[DO_NOT_MERGE] chore: dfx start --pocketic #631
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: rust-composite_query | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths: | |
- rust/composite_query/** | |
- .github/workflows/provision-darwin.sh | |
- .github/workflows/provision-linux.sh | |
- .github/workflows/rust-composite_query-example.yml | |
- .github/workflows/rust-composite_query-skip.yml | |
- .ic-commit | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
rust-composite_query-darwin: | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Provision Darwin | |
run: bash .github/workflows/provision-darwin.sh | |
- name: Rust composite_query Darwin | |
run: | | |
pushd rust/composite_query | |
dfx start --background --clean --pocketic | |
dfx canister create data_partition --no-wallet | |
dfx build data_partition | |
dfx canister create kv_frontend --no-wallet | |
dfx build kv_frontend | |
dfx canister install kv_frontend | |
dfx canister call kv_frontend put '(1, 1337)' | |
dfx canister call kv_frontend get '(1)' | grep '1_337' | |
popd | |
rust-composite_query-linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Provision Linux | |
run: bash .github/workflows/provision-linux.sh | |
- name: Rust composite_query Linux | |
run: | | |
pushd rust/composite_query | |
dfx start --background --clean --pocketic | |
dfx canister create data_partition --no-wallet | |
dfx build data_partition | |
dfx canister create kv_frontend --no-wallet | |
dfx build kv_frontend | |
dfx canister install kv_frontend | |
dfx canister call kv_frontend put '(1, 1337)' | |
dfx canister call kv_frontend get '(1)' | grep '1_337' | |
popd |