Skip to content

Commit

Permalink
Merge branch 'master' into lwshang/dfx_0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lwshang authored Mar 7, 2024
2 parents 5194e36 + 1db5707 commit 071f1b3
Show file tree
Hide file tree
Showing 63 changed files with 3,995 additions and 3,811 deletions.
86 changes: 86 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
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







44 changes: 44 additions & 0 deletions .github/workflows/motoko-icp-transfer-example.yml
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
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
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# Known failure: https://dfinity.atlassian.net/browse/EM-5
name: rust-tokens_transfer
name: rust-icp_transfer
on:
push:
branches:
- master
pull_request:
paths:
- rust/tokens_transfer/**
- rust/icp_transfer/**
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/rust-tokens-transfer-example.yml
- .github/workflows/rust-icp-transfer-example.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
rust-tokens_transfer-darwin:
rust-icp_transfer-darwin:
runs-on: macos-12
steps:
- uses: actions/checkout@v2
Expand All @@ -24,10 +24,10 @@ jobs:
run: bash .github/workflows/provision-darwin.sh
- name: Rust Tokens Transfer Darwin
run: |
pushd rust/tokens_transfer
pushd rust/icp_transfer
bash ./demo.sh
popd
rust-tokens_transfer-linux:
rust-icp_transfer-linux:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
Expand All @@ -37,6 +37,6 @@ jobs:
run: bash .github/workflows/provision-linux.sh
- name: Rust Tokens Transfer Linux
run: |
pushd rust/tokens_transfer
pushd rust/icp_transfer
bash ./demo.sh
popd
42 changes: 42 additions & 0 deletions .github/workflows/rust-token-transfer-example.yml
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
38 changes: 19 additions & 19 deletions motoko/auth_client_demo/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions motoko/auth_client_demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
],
"dependencies": {
"@dfinity/agent": "^0.20.2",
"@dfinity/auth-client": "^0.20.2",
"@dfinity/auth-client": "^1.0.1",
"@dfinity/candid": "^0.20.2",
"@dfinity/identity": "^0.20.2",
"@dfinity/identity": "^1.0.1",
"@dfinity/principal": "^0.20.2",
"lit-html": "^2.4.0",
"pinia": "^2.0.36",
Expand Down
12 changes: 6 additions & 6 deletions motoko/cert-var/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 071f1b3

Please sign in to comment.