Skip to content

Commit 4104430

Browse files
jolestarnanne007
andauthored
[move-prover] Fix move prover test (starcoinorg#2946)
* [ci] Update runner image's ENV * [ci] Update runner image. * fixup * fixup * [move-prover] cleanup move-prover * [ci] test move-prover by a independent test. * update diem * update Co-authored-by: caojiafeng <[email protected]>
1 parent b041926 commit 4104430

File tree

153 files changed

+197
-11212
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+197
-11212
lines changed

.github/workflows/build_test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ jobs:
4545
args: --all
4646
- name: test
4747
run: bash ./scripts/auto_rerun_test.sh
48+
- name: move-prover-test
49+
uses: actions-rs/cargo@v1
50+
with:
51+
command: test
52+
args: -p starcoin-move-prover
4853
- name: check changed files
4954
run: bash ./scripts/changed-files.sh
5055
- name: integration test dev environment

Cargo.lock

Lines changed: 96 additions & 96 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

abi/decoder/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ serde_bytes = "0.11"
1414
anyhow = "1.0.41"
1515
once_cell = "1.8.0"
1616
hex = "0.4.3"
17-
move-binary-format = {git = "https://github.com/starcoinorg/diem", rev="6c2c02bb99728136dd144175b647ba3b1695d224" }
17+
move-binary-format = {git = "https://github.com/starcoinorg/diem", rev="6ff224f42a408f584acbcd37eebac14de619b16f" }
1818
starcoin-resource-viewer = {path = "../../vm/resource-viewer"}
1919
starcoin-vm-types = { path = "../../vm/types" }
2020
starcoin-abi-types = {path = "../types"}
2121
starcoin-abi-resolver = {path = "../resolver"}
2222
bcs-ext = {path = "../../commons/bcs_ext"}
2323
bcs = "0.1"
24-
schemars = {git = "https://github.com/starcoinorg/schemars", rev="44133de95bd7fe9dbd9ea16a8c012cbfcdae0445"}
24+
schemars = {git = "https://github.com/starcoinorg/schemars", rev="67e185dd17fa24ad349bf2ad0828068cdae77505"}

abi/resolver/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ starcoin-vm-types = {path = "../../vm/types"}
1111
starcoin-abi-types = {path = "../types"}
1212
anyhow="~1"
1313
starcoin-resource-viewer = {path = "../../vm/resource-viewer"}
14-
move-model = { git = "https://github.com/starcoinorg/diem", rev="6c2c02bb99728136dd144175b647ba3b1695d224" }
14+
move-model = { git = "https://github.com/starcoinorg/diem", rev="6ff224f42a408f584acbcd37eebac14de619b16f" }
1515
[dev-dependencies]
1616
stdlib = {path = "../../vm/stdlib"}
1717
serde_json = "1"

abi/types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ serde="~1"
1414
serde_bytes = "0.11"
1515
serde_json = "~1"
1616
hex = "0.4"
17-
schemars = {git = "https://github.com/starcoinorg/schemars", rev="44133de95bd7fe9dbd9ea16a8c012cbfcdae0445"}
17+
schemars = {git = "https://github.com/starcoinorg/schemars", rev="67e185dd17fa24ad349bf2ad0828068cdae77505"}

account/api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ rand = "0.8.4"
2121
rand_core = { version = "0.6.3", default-features = false }
2222
futures = "0.3.12"
2323
starcoin-service-registry = { path = "../../commons/service-registry" }
24-
schemars = {git = "https://github.com/starcoinorg/schemars", rev="44133de95bd7fe9dbd9ea16a8c012cbfcdae0445"}
24+
schemars = {git = "https://github.com/starcoinorg/schemars", rev="67e185dd17fa24ad349bf2ad0828068cdae77505"}
2525

2626
[dev-dependencies]
2727

cmd/starcoin/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ starcoin-resource-viewer = { path = "../../vm/resource-viewer" }
4848
starcoin-service-registry = { path = "../../commons/service-registry" }
4949
starcoin-move-explain = { path = "../../vm/move-explain" }
5050
vm-status-translator = {path = "../../vm/vm-status-translator"}
51-
errmapgen = { git = "https://github.com/starcoinorg/diem", rev="6c2c02bb99728136dd144175b647ba3b1695d224" }
51+
errmapgen = { git = "https://github.com/starcoinorg/diem", rev="6ff224f42a408f584acbcd37eebac14de619b16f" }
5252
network-api = {path = "../../network/api", package="network-api"}
5353
starcoin-network-rpc-api = {path = "../../network-rpc/api"}
54-
short-hex-str = { git = "https://github.com/starcoinorg/diem", rev="6c2c02bb99728136dd144175b647ba3b1695d224" }
54+
short-hex-str = { git = "https://github.com/starcoinorg/diem", rev="6ff224f42a408f584acbcd37eebac14de619b16f" }
5555
starcoin-abi-decoder = {path = "../../abi/decoder"}
5656
starcoin-abi-types = {path = "../../abi/types"}
5757

commons/accumulator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ bcs-ext = { package="bcs-ext", path = "../../commons/bcs_ext" }
1919
serde = { version = "1.0.130" }
2020
lru = "0.7.0"
2121
parking_lot = "0.11.2"
22-
schemars = {git = "https://github.com/starcoinorg/schemars", rev="44133de95bd7fe9dbd9ea16a8c012cbfcdae0445"}
22+
schemars = {git = "https://github.com/starcoinorg/schemars", rev="67e185dd17fa24ad349bf2ad0828068cdae77505"}
2323

2424
[dev-dependencies]
2525
rand = "0.8.4"

commons/crypto/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ serde = { version = "1.0.130" }
1111
serde_bytes = "0.11.5"
1212
hex = "0.4.3"
1313
anyhow = "1.0"
14-
diem-crypto = { package="diem-crypto", git = "https://github.com/starcoinorg/diem", rev="6c2c02bb99728136dd144175b647ba3b1695d224" , features = ["fuzzing"] }
15-
diem-crypto-derive = { package="diem-crypto-derive", git = "https://github.com/starcoinorg/diem", rev="6c2c02bb99728136dd144175b647ba3b1695d224" }
14+
diem-crypto = { package="diem-crypto", git = "https://github.com/starcoinorg/diem", rev="6ff224f42a408f584acbcd37eebac14de619b16f" , features = ["fuzzing"] }
15+
diem-crypto-derive = { package="diem-crypto-derive", git = "https://github.com/starcoinorg/diem", rev="6ff224f42a408f584acbcd37eebac14de619b16f" }
1616
bcs-ext = { package="bcs-ext", path = "../bcs_ext" }
1717
crypto-macro = { package="starcoin-crypto-macro", path = "./crypto-macro"}
1818
rand = "0.8.4"

commons/forkable-jellyfish-merkle/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ thiserror = "1.0"
2222
hex= "0.4.3"
2323
once_cell = "1.8.0"
2424
bcs-ext = { path = "../../commons/bcs_ext", package = "bcs-ext" }
25-
schemars = {git = "https://github.com/starcoinorg/schemars", rev="44133de95bd7fe9dbd9ea16a8c012cbfcdae0445"}
25+
schemars = {git = "https://github.com/starcoinorg/schemars", rev="67e185dd17fa24ad349bf2ad0828068cdae77505"}
2626

2727
[dev-dependencies]
2828
rand = "0.8.4"

0 commit comments

Comments
 (0)