-
Notifications
You must be signed in to change notification settings - Fork 402
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into lwshang/dfx_0.18.0
- Loading branch information
Showing
63 changed files
with
3,995 additions
and
3,811 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,87 @@ | ||
* @dfinity/editorial | ||
|
||
/c/adventure/ @dfinity/growth | ||
/c/qr/ @dfinity/growth | ||
/c/reverse/ @dfinity/growth | ||
|
||
/hosting/godot-html5-template/ @zhangwei983 | ||
/hosting/photo-storage/ @dfinity/sdk | ||
/hosting/static-website/ @dfinity/sdk | ||
/hosting/unity-webgl-template/ @zhangwei983 | ||
|
||
/motoko/actor_reference/ @dfinity/languages | ||
/motoko/auth_client_demo/ @dfinity/sdk | ||
/motoko/basic_bitcoin/ @dfinity/execution | ||
/motoko/basic_dao/ @dfinity/languages | ||
/motoko/calc/ @dfinity/languages | ||
/motoko/cert-var/ @dfinity/trust | ||
/motoko/classes/ @dfinity/languages | ||
/motoko/composite_query/ @dfinity/languages | ||
/motoko/counter/ @dfinity/languages | ||
/motoko/defi/ @rumenov | ||
/motoko/dip721-nft-container/ @dfinity/languages | ||
/motoko/echo/ @dfinity/languages | ||
/motoko/encrypted-notes-dapp-vetkd/ @dfinity/div-Crypto | ||
/motoko/encrypted-notes-dapp/ @dfinity/div-Crypto | ||
/motoko/factorial/ @dfinity/languages | ||
/motoko/hello-world/ @dfinity/languages | ||
/motoko/hello/ @dfinity/languages | ||
/motoko/hello_cycles/ @dfinity/languages | ||
/motoko/http_counter/ @rumenov | ||
/motoko/ic-pos/ @dfinity/div-Crypto | ||
/motoko/icrc2-swap/ @dfinity/div-Crypto | ||
/motoko/internet_identity_integration/ @dfinity/gix | ||
/motoko/invoice-canister/ @dfinity/FinInt | ||
/motoko/ios-notifications/ @dfinity/trust | ||
/motoko/ledger-transfer/ @dfinity/FinInt | ||
/motoko/life/ @dfinity/languages | ||
/motoko/minimal-counter-dapp/ @dfinity/growth | ||
/motoko/persistent-storage/ @dfinity/growth | ||
/motoko/phone-book/ @dfinity/growth | ||
/motoko/pub-sub/ @dfinity/growth | ||
/motoko/quicksort/ @dfinity/growth | ||
/motoko/random_maze/ @dfinity/languages | ||
/motoko/send_http_get/ @rumenov | ||
/motoko/send_http_post/ @rumenov | ||
/motoko/simple-to-do/ @dfinity/growth | ||
/motoko/superheroes/ @dfinity/growth | ||
/motoko/threshold-ecdsa/ @dfinity/div-Crypto | ||
/motoko/vetkd/ @dfinity/div-Crypto | ||
/motoko/whoami/ @dfinity/growth | ||
|
||
/native-apps/unity_ii_applink/ @zhangwei983 | ||
/native-apps/unity_ii_deeplink/ @zhangwei983 | ||
|
||
/rust/basic_bitcoin/ @dfinity/execution | ||
/rust/basic_dao/ @dfinity/testing-verification | ||
/rust/canister-info/ @dfinity/testing-verification | ||
/rust/composite_query/ @dfinity/execution | ||
/rust/counter/ @dfinity/growth | ||
/rust/defi/ @dfinity/div-Crypto | ||
/rust/dip721-nft-container/ @dfinity/sdk | ||
/rust/encrypted-notes-dapp-vetkd/ @dfinity/div-Crypto | ||
/rust/encrypted-notes-dapp/ @dfinity/div-Crypto | ||
/rust/hello/ @dfinity/sdk | ||
/rust/nft-wallet/ @dfinity/growth | ||
/rust/performance_counters/ @dfinity/runtime | ||
/rust/periodic_tasks/ @dfinity/runtime | ||
/rust/pub-sub/ @dfinity/growth | ||
/rust/qrcode/ @dfinity/runtime | ||
/rust/send_http_get/ @dfinity/growth | ||
/rust/send_http_post/ @dfinity/growth | ||
/rust/threshold-ecdsa/ @chmllr | ||
/rust/tokens_transfer/ @dfinity/div-Crypto | ||
/rust/vetkd/ @dfinity/div-Crypto | ||
|
||
/svelte/svelte-motoko-starter/ @dfinity/sdk | ||
/svelte/svelte-starter/ @dfinity/sdk | ||
/svelte/sveltekit-starter/ @dfinity/sdk | ||
|
||
/wasm/counter @dfinity/languages | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Known failure: https://dfinity.atlassian.net/browse/EM-5 | ||
name: motoko-icp_transfer | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
paths: | ||
- motoko/icp_transfer/** | ||
- .github/workflows/provision-darwin.sh | ||
- .github/workflows/provision-linux.sh | ||
- .github/workflows/motoko-icp-transfer-example.yml | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
motoko-icp_transfer-darwin: | ||
runs-on: macos-12 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Provision Darwin | ||
run: bash .github/workflows/provision-darwin.sh | ||
- name: Install mops | ||
uses: ZenVoich/setup-mops@v1 | ||
- name: Motoko Ledger Transfer Darwin | ||
run: | | ||
pushd motoko/icp_transfer | ||
mops install | ||
bash ./demo.sh | ||
popd | ||
motoko-icp_transfer-linux: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Provision Linux | ||
run: bash .github/workflows/provision-linux.sh | ||
- name: Install mops | ||
uses: ZenVoich/setup-mops@v1 | ||
- name: Motoko Ledger Transfer Linux | ||
run: | | ||
pushd motoko/icp_transfer | ||
mops install | ||
bash ./demo.sh | ||
popd |
14 changes: 7 additions & 7 deletions
14
...kflows/motoko-ledger-transfer-example.yml → ...rkflows/motoko-token-transfer-example.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
# Known failure: https://dfinity.atlassian.net/browse/EM-5 | ||
name: motoko-ledger-transfer | ||
name: motoko-token_transfer | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
paths: | ||
- motoko/ledger-transfer/** | ||
- motoko/token_transfer/** | ||
- .github/workflows/provision-darwin.sh | ||
- .github/workflows/provision-linux.sh | ||
- .github/workflows/motoko-ledger-transfer-example.yml | ||
- .github/workflows/motoko-token-transfer-example.yml | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
motoko-ledger-transfer-darwin: | ||
motoko-token_transfer-darwin: | ||
runs-on: macos-12 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Provision Darwin | ||
run: bash .github/workflows/provision-darwin.sh | ||
- name: Motoko Ledger Transfer Darwin | ||
run: | | ||
pushd motoko/ledger-transfer | ||
pushd motoko/token_transfer | ||
bash ./demo.sh | ||
popd | ||
motoko-ledger-transfer-linux: | ||
motoko-token_transfer-linux: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Provision Linux | ||
run: bash .github/workflows/provision-linux.sh | ||
- name: Motoko Ledger Transfer Linux | ||
run: | | ||
pushd motoko/ledger-transfer | ||
pushd motoko/token_transfer | ||
bash ./demo.sh | ||
popd |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Known failure: https://dfinity.atlassian.net/browse/EM-5 | ||
name: rust-token_transfer | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
paths: | ||
- rust/token_transfer/** | ||
- .github/workflows/provision-darwin.sh | ||
- .github/workflows/provision-linux.sh | ||
- .github/workflows/rust-icp-transfer-example.yml | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
rust-token_transfer-darwin: | ||
runs-on: macos-12 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
- name: Provision Darwin | ||
run: bash .github/workflows/provision-darwin.sh | ||
- name: Rust Tokens Transfer Darwin | ||
run: | | ||
pushd rust/token_transfer | ||
bash ./demo.sh | ||
popd | ||
rust-token_transfer-linux: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
- name: Provision Linux | ||
run: bash .github/workflows/provision-linux.sh | ||
- name: Rust Tokens Transfer Linux | ||
run: | | ||
pushd rust/token_transfer | ||
bash ./demo.sh | ||
popd |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.