Skip to content

Commit c5b50f7

Browse files
github-actions[bot]identity-botqrayven
authored
chore: deploy devnet - pipeline fixes and Move history updates (#168)
- updates the new package address for `devnet` - fixes building Hierarchies in the pipeline --------- Co-authored-by: Identity Bot <identity-bot@iota.org> Co-authored-by: Pawel Iwan <pawel.ivan@iota.org>
1 parent 6699b6a commit c5b50f7

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/actions/iota/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ runs:
5353
PLATFORM_TRIPLET="linux-x86_64"
5454
elif [ "$PLATFORM" = "macos" ]; then
5555
PLATFORM_TRIPLET="macos-arm64"
56-
brew install postgresql
56+
brew install postgresql@14
5757
brew reinstall libpq
5858
else
5959
echo "not binaries for platform: $PLATFORM"

.github/workflows/clippy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Install wasm-bindgen-cli
4242
uses: jetli/wasm-bindgen-action@24ba6f9fff570246106ac3f80f35185600c3f6c9
4343
with:
44-
version: "0.2.101"
44+
version: "0.2.108"
4545

4646
- name: core clippy check
4747
uses: actions-rs-plus/clippy-check@b09a9c37c9df7db8b1a5d52e8fe8e0b6e3d574c4

.github/workflows/shared-build-wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Install wasm-bindgen-cli
5959
uses: jetli/wasm-bindgen-action@24ba6f9fff570246106ac3f80f35185600c3f6c9
6060
with:
61-
version: "0.2.102"
61+
version: "0.2.108"
6262

6363
- name: Setup sccache
6464
uses: "./.github/actions/rust/sccache/setup"

bindings/wasm/hierarchies_wasm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ console_error_panic_hook = "0.1"
2222
hyper = "=1.7" # Fix for iota-sdk 1.13 issue with axum-server.
2323
iota_interaction = { package = "iota_interaction", git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.11", default-features = false }
2424
iota_interaction_ts = { package = "iota_interaction_ts", git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.11" }
25-
js-sys = { version = "0.3" }
25+
js-sys = { version = "=0.3.85" }
2626
serde = { version = "1.0", features = ["derive"] }
2727
serde-wasm-bindgen = "0.6"
28-
wasm-bindgen = { version = "=0.2.102", features = ["serde-serialize"] }
28+
wasm-bindgen = { version = "=0.2.108", features = ["serde-serialize"] }
2929
wasm-bindgen-futures = { version = "0.4", default-features = false }
3030

3131
[dependencies.hierarchies]

hierarchies-move/Move.history.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
"aliases": {
33
"testnet": "2304aa97",
44
"mainnet": "6364aad5",
5-
"devnet": "e678123a"
5+
"devnet": "daf90477"
66
},
77
"envs": {
88
"6364aad5": [
99
"0x0f75165f01198edbc758df00d61440a46300efb639f3a5c33a7c797a8a66d371"
1010
],
11-
"e678123a": [
12-
"0x373c0013c63394509b220a70307a54c323729369a574197c19c9c571c64e68be"
13-
],
1411
"2304aa97": [
1512
"0xbaa47178b92a43d08f79c029a385d5aff75e4e1010e12ea5105fe68f4e9ce8ef"
13+
],
14+
"daf90477": [
15+
"0x0de31a24502b692a1f1984697ad45043f5dbdf3169283aa20d08805a11b20368"
1616
]
1717
}
18-
}
18+
}

hierarchies-move/Move.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ dependencies = [
4242
]
4343

4444
[move.toolchain-version]
45-
compiler-version = "1.7.0-rc"
45+
compiler-version = "1.18.0-beta"
4646
edition = "2024.beta"
4747
flavor = "iota"
4848

@@ -73,8 +73,8 @@ latest-published-id = "0x0f75165f01198edbc758df00d61440a46300efb639f3a5c33a7c797
7373
published-version = "1"
7474

7575
[env.devnet]
76-
chain-id = "e678123a"
77-
original-published-id = "0x373c0013c63394509b220a70307a54c323729369a574197c19c9c571c64e68be"
78-
latest-published-id = "0x373c0013c63394509b220a70307a54c323729369a574197c19c9c571c64e68be"
76+
chain-id = "daf90477"
77+
original-published-id = "0x0de31a24502b692a1f1984697ad45043f5dbdf3169283aa20d08805a11b20368"
78+
latest-published-id = "0x0de31a24502b692a1f1984697ad45043f5dbdf3169283aa20d08805a11b20368"
7979
published-version = "1"
8080

0 commit comments

Comments
 (0)