build: fix deps, do not run ci on grim branch
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
name: Continuous Integration
|
||||
on: [push, pull_request]
|
||||
branches-ignore:
|
||||
- grim
|
||||
|
||||
jobs:
|
||||
linux-tests:
|
||||
|
||||
Generated
-8
@@ -1279,7 +1279,6 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "grin_api"
|
||||
version = "5.4.0"
|
||||
source = "git+https://github.com/mimblewimble/grin?rev=cf2ed3f3becd62b5e754ec964fd90e332b9a021f#cf2ed3f3becd62b5e754ec964fd90e332b9a021f"
|
||||
dependencies = [
|
||||
"async-stream",
|
||||
"bytes 1.11.1",
|
||||
@@ -1313,7 +1312,6 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "grin_chain"
|
||||
version = "5.4.0"
|
||||
source = "git+https://github.com/mimblewimble/grin?rev=cf2ed3f3becd62b5e754ec964fd90e332b9a021f#cf2ed3f3becd62b5e754ec964fd90e332b9a021f"
|
||||
dependencies = [
|
||||
"bit-vec",
|
||||
"bitflags 1.3.2",
|
||||
@@ -1336,7 +1334,6 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "grin_core"
|
||||
version = "5.4.0"
|
||||
source = "git+https://github.com/mimblewimble/grin?rev=cf2ed3f3becd62b5e754ec964fd90e332b9a021f#cf2ed3f3becd62b5e754ec964fd90e332b9a021f"
|
||||
dependencies = [
|
||||
"blake2-rfc",
|
||||
"byteorder",
|
||||
@@ -1362,7 +1359,6 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "grin_keychain"
|
||||
version = "5.4.0"
|
||||
source = "git+https://github.com/mimblewimble/grin?rev=cf2ed3f3becd62b5e754ec964fd90e332b9a021f#cf2ed3f3becd62b5e754ec964fd90e332b9a021f"
|
||||
dependencies = [
|
||||
"blake2-rfc",
|
||||
"byteorder",
|
||||
@@ -1384,7 +1380,6 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "grin_p2p"
|
||||
version = "5.4.0"
|
||||
source = "git+https://github.com/mimblewimble/grin?rev=cf2ed3f3becd62b5e754ec964fd90e332b9a021f#cf2ed3f3becd62b5e754ec964fd90e332b9a021f"
|
||||
dependencies = [
|
||||
"bitflags 1.3.2",
|
||||
"built",
|
||||
@@ -1407,7 +1402,6 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "grin_pool"
|
||||
version = "5.4.0"
|
||||
source = "git+https://github.com/mimblewimble/grin?rev=cf2ed3f3becd62b5e754ec964fd90e332b9a021f#cf2ed3f3becd62b5e754ec964fd90e332b9a021f"
|
||||
dependencies = [
|
||||
"blake2-rfc",
|
||||
"chrono",
|
||||
@@ -1439,7 +1433,6 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "grin_store"
|
||||
version = "5.4.0"
|
||||
source = "git+https://github.com/mimblewimble/grin?rev=cf2ed3f3becd62b5e754ec964fd90e332b9a021f#cf2ed3f3becd62b5e754ec964fd90e332b9a021f"
|
||||
dependencies = [
|
||||
"byteorder",
|
||||
"croaring",
|
||||
@@ -1458,7 +1451,6 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "grin_util"
|
||||
version = "5.4.0"
|
||||
source = "git+https://github.com/mimblewimble/grin?rev=cf2ed3f3becd62b5e754ec964fd90e332b9a021f#cf2ed3f3becd62b5e754ec964fd90e332b9a021f"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"backtrace",
|
||||
|
||||
+10
-4
@@ -54,10 +54,10 @@ grin_wallet_util = { path = "./util", version = "5.4.0-alpha.1" }
|
||||
# grin_api = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
|
||||
|
||||
# For bleeding edge
|
||||
grin_core = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_keychain = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_util = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_api = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_core = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_keychain = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_util = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_api = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
|
||||
# For local testing
|
||||
# grin_core = { path = "../grin/core"}
|
||||
@@ -65,6 +65,12 @@ grin_api = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62
|
||||
# grin_util = { path = "../grin/util"}
|
||||
# grin_api = { path = "../grin/api"}
|
||||
|
||||
# Grim monorepo
|
||||
grin_core = { path = "../node/core"}
|
||||
grin_keychain = { path = "../node/keychain"}
|
||||
grin_util = { path = "../node/util"}
|
||||
grin_api = { path = "../node/api"}
|
||||
|
||||
######
|
||||
|
||||
[build-dependencies]
|
||||
|
||||
+8
-3
@@ -41,15 +41,20 @@ grin_wallet_util = { path = "../util", version = "5.4.0-alpha.1" }
|
||||
# grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
|
||||
|
||||
# For bleeding edge
|
||||
grin_core = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_keychain = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_util = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_core = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_keychain = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_util = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
|
||||
# For local testing
|
||||
# grin_core = { path = "../../grin/core"}
|
||||
# grin_keychain = { path = "../../grin/keychain"}
|
||||
# grin_util = { path = "../../grin/util"}
|
||||
|
||||
# Monorepo deps
|
||||
grin_core = { path = "../../node/core"}
|
||||
grin_keychain = { path = "../../node/keychain"}
|
||||
grin_util = { path = "../../node/util"}
|
||||
|
||||
#####
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
+6
-2
@@ -30,13 +30,17 @@ grin_wallet_util = { path = "../util", version = "5.4.0-alpha.1" }
|
||||
#grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
|
||||
|
||||
# For bleeding edge
|
||||
grin_core = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_util = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_core = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_util = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
|
||||
# For local testing
|
||||
# grin_core = { path = "../../grin/core"}
|
||||
# grin_util = { path = "../../grin/util"}
|
||||
|
||||
# Monorepo deps
|
||||
grin_core = { path = "../../node/core"}
|
||||
grin_util = { path = "../../node/util"}
|
||||
|
||||
#####
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
+12
-5
@@ -54,11 +54,11 @@ grin_wallet_config = { path = "../config", version = "5.4.0-alpha.1" }
|
||||
# grin_chain = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
|
||||
|
||||
# For bleeding edge
|
||||
grin_core = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_keychain = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_util = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_api = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_chain = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_core = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_keychain = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_util = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_api = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_chain = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
|
||||
# For local testing
|
||||
# grin_core = { path = "../../grin/core"}
|
||||
@@ -67,6 +67,13 @@ grin_chain = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd
|
||||
# grin_api = { path = "../../grin/api"}
|
||||
# grin_chain = { path = "../../grin/chain"}
|
||||
|
||||
# Monorepo deps
|
||||
grin_core = { path = "../../node/core"}
|
||||
grin_keychain = { path = "../../node/keychain"}
|
||||
grin_util = { path = "../../node/util"}
|
||||
grin_api = { path = "../../node/api"}
|
||||
grin_chain = { path = "../../node/chain"}
|
||||
|
||||
#####
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
+14
-6
@@ -60,12 +60,12 @@ grin_wallet_libwallet = { path = "../libwallet", version = "5.4.0-alpha.1" }
|
||||
# grin_store = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
|
||||
|
||||
# For bleeding edge
|
||||
grin_core = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_keychain = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_chain = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_util = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_api = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_store = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_core = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_keychain = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_chain = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_util = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_api = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_store = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
|
||||
# For local testing
|
||||
# grin_core = { path = "../../grin/core"}
|
||||
@@ -75,6 +75,14 @@ grin_store = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd
|
||||
# grin_api = { path = "../../grin/api"}
|
||||
# grin_store = { path = "../../grin/store"}
|
||||
|
||||
# Monorepo deps
|
||||
grin_core = { path = "../../node/core"}
|
||||
grin_keychain = { path = "../../node/keychain"}
|
||||
grin_chain = { path = "../../node/chain"}
|
||||
grin_util = { path = "../../node/util"}
|
||||
grin_api = { path = "../../node/api"}
|
||||
grin_store = { path = "../../node/store"}
|
||||
|
||||
#####
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
+10
-4
@@ -59,10 +59,10 @@ grin_wallet_config = { path = "../config", version = "5.4.0-alpha.1" }
|
||||
# grin_store = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
|
||||
|
||||
# For bleeding edge
|
||||
grin_core = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_keychain = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_util = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
grin_store = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_core = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_keychain = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_util = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_store = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
|
||||
# For local testing
|
||||
# grin_core = { path = "../../grin/core"}
|
||||
@@ -70,4 +70,10 @@ grin_store = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd
|
||||
# grin_util = { path = "../../grin/util"}
|
||||
# grin_store = { path = "../../grin/store"}
|
||||
|
||||
# Monorepo deps
|
||||
grin_core = { path = "../../node/core"}
|
||||
grin_keychain = { path = "../../node/keychain"}
|
||||
grin_util = { path = "../../node/util"}
|
||||
grin_store = { path = "../../node/store"}
|
||||
|
||||
#####
|
||||
|
||||
+4
-1
@@ -28,12 +28,15 @@ thiserror = "1"
|
||||
# grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
|
||||
|
||||
# For bleeding edge
|
||||
grin_util = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
#grin_util = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
||||
|
||||
# For local testing
|
||||
|
||||
# grin_util = { path = "../../grin/util"}
|
||||
|
||||
# Monorepo deps
|
||||
grin_util = { path = "../../node/util"}
|
||||
|
||||
#####
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
Reference in New Issue
Block a user