Skip to content

Commit c8dc6aa

Browse files
committed
Merge branch 'master' into mraszyk/pic
2 parents a78ce17 + 013d77e commit c8dc6aa

File tree

12 files changed

+46
-6
lines changed

12 files changed

+46
-6
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
/motoko/encrypted-notes-dapp/ @dfinity/crypto-team
2121
/motoko/hello_cycles/ @dfinity/languages
2222
/motoko/ic-pos/ @dfinity/growth
23+
/motoko/icp_transfer/ @dfinity/growth
2324
/motoko/icrc2-swap/ @dfinity/growth
2425
/motoko/internet_identity_integration/ @dfinity/identity
2526
/motoko/life/ @dfinity/languages
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Known failure: https://dfinity.atlassian.net/browse/EM-5
2+
name: motoko-icp_transfer
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
paths:
9+
- motoko/icp_transfer/**
10+
- .github/workflows/provision-darwin.sh
11+
- .github/workflows/provision-linux.sh
12+
- .github/workflows/motoko-icp-transfer-example.yml
13+
- .ic-commit
14+
concurrency:
15+
group: ${{ github.workflow }}-${{ github.ref }}
16+
cancel-in-progress: true
17+
jobs:
18+
motoko-icp_transfer-darwin:
19+
runs-on: macos-15
20+
steps:
21+
- uses: actions/checkout@v1
22+
- name: Provision Darwin
23+
run: bash .github/workflows/provision-darwin.sh
24+
- name: Motoko Ledger Transfer Darwin
25+
run: |
26+
pushd motoko/icp_transfer
27+
bash ./demo.sh
28+
popd
29+
motoko-icp_transfer-linux:
30+
runs-on: ubuntu-20.04
31+
steps:
32+
- uses: actions/checkout@v1
33+
- name: Provision Linux
34+
run: bash .github/workflows/provision-linux.sh
35+
- name: Motoko Ledger Transfer Linux
36+
run: |
37+
pushd motoko/icp_transfer
38+
bash ./demo.sh
39+
popd

archive/motoko/icp_transfer/README.md renamed to motoko/icp_transfer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The URL for the ledger.did file is `https://raw.githubusercontent.com/dfinity/ic
6060
If you want to make sure you have the latest ICP ledger files, you can run the following script. Please ensure that you have [`jq`](https://jqlang.github.io/jq/) installed as the script relies on it.
6161

6262
```sh
63-
curl -o download_latest_icp_ledger.sh "https://raw.githubusercontent.com/dfinity/ic/00a4ab409e6236d4082cee4a47544a2d87b7190d/rs/rosetta-api/scripts/download_latest_icp_ledger.sh"
63+
curl -o download_latest_icp_ledger.sh "https://raw.githubusercontent.com/dfinity/ic/1f1d8dd8c294d19a5551a022e3f00f25da7dc944/rs/rosetta-api/scripts/download_latest_icp_ledger.sh"
6464
chmod +x download_latest_icp_ledger.sh
6565
./download_latest_icp_ledger.sh
6666
```
File renamed without changes.
File renamed without changes.

motoko/token_transfer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The URL for the ledger .did file is `https://raw.githubusercontent.com/dfinity/i
4040
If you want to make sure, you have the latest ICRC-1 ledger files you can run the following script.
4141

4242
```sh
43-
curl -o download_latest_icrc1_ledger.sh "https://raw.githubusercontent.com/dfinity/ic/<REVISION>/rs/rosetta-api/scripts/download_latest_icrc1_ledger.sh"
43+
curl -o download_latest_icrc1_ledger.sh "https://raw.githubusercontent.com/dfinity/ic/1f1d8dd8c294d19a5551a022e3f00f25da7dc944/rs/rosetta-api/scripts/download_latest_icrc1_ledger.sh"
4444
chmod +x download_latest_icrc1_ledger.sh
4545
./download_latest_icrc1_ledger.sh
4646
```

motoko/token_transfer_from/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The URL for the ledger .did file is `https://raw.githubusercontent.com/dfinity/i
4040
If you want to make sure, you have the latest ICRC-1 ledger files you can run the following script.
4141

4242
```sh
43-
curl -o download_latest_icrc1_ledger.sh "https://raw.githubusercontent.com/dfinity/ic/<REVISION>/rs/rosetta-api/scripts/download_latest_icrc1_ledger.sh"
43+
curl -o download_latest_icrc1_ledger.sh "https://raw.githubusercontent.com/dfinity/ic/1f1d8dd8c294d19a5551a022e3f00f25da7dc944/rs/rosetta-api/scripts/download_latest_icrc1_ledger.sh"
4444
chmod +x download_latest_icrc1_ledger.sh
4545
./download_latest_icrc1_ledger.sh
4646
```

rust/icp_transfer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The URL for the ledger.did file is `https://raw.githubusercontent.com/dfinity/ic
4343
If you want to make sure you have the latest ICP ledger files, you can run the following script. Please ensure that you have [`jq`](https://jqlang.github.io/jq/) installed as the script relies on it.
4444

4545
```sh
46-
curl -o download_latest_icp_ledger.sh "https://raw.githubusercontent.com/dfinity/ic/<REVISION>/rs/rosetta-api/scripts/download_latest_icp_ledger.sh"
46+
curl -o download_latest_icp_ledger.sh "https://raw.githubusercontent.com/dfinity/ic/1f1d8dd8c294d19a5551a022e3f00f25da7dc944/rs/rosetta-api/scripts/download_latest_icp_ledger.sh"
4747
chmod +x download_latest_icp_ledger.sh
4848
./download_latest_icp_ledger.sh
4949
```

0 commit comments

Comments
 (0)