Examples and benchmarks are not released to crates.io (#808)
This commit is contained in:
parent
cb6d89f4c7
commit
f3170c7adf
1 changed files with 5 additions and 5 deletions
|
@ -12,14 +12,14 @@ CARGO_MAKE_CARGO_ALL_FEATURES = ""
|
||||||
[tasks.release]
|
[tasks.release]
|
||||||
condition = { env_set = [ "RELEASE_LEVEL" ] }
|
condition = { env_set = [ "RELEASE_LEVEL" ] }
|
||||||
workspace = false
|
workspace = false
|
||||||
env = { "CARGO_MAKE_WORKSPACE_SKIP_MEMBERS" = "integration_tests/*" }
|
env = { "CARGO_MAKE_WORKSPACE_SKIP_MEMBERS" = "integration_tests/*;examples/*;juniper_benchmarks" }
|
||||||
run_task = { name = "release-INTERNAL", fork = true }
|
run_task = { name = "release-INTERNAL", fork = true }
|
||||||
|
|
||||||
|
|
||||||
[tasks.release-some]
|
[tasks.release-some]
|
||||||
condition = { env_set = [ "RELEASE_LEVEL", "CARGO_MAKE_WORKSPACE_SKIP_MEMBERS" ] }
|
condition = { env_set = [ "RELEASE_LEVEL", "CARGO_MAKE_WORKSPACE_SKIP_MEMBERS" ] }
|
||||||
workspace = false
|
workspace = false
|
||||||
env = { "CARGO_MAKE_WORKSPACE_SKIP_MEMBERS" = "integration_tests/*" }
|
env = { "CARGO_MAKE_WORKSPACE_SKIP_MEMBERS" = "integration_tests/*;examples/*;juniper_benchmarks" }
|
||||||
run_task = { name = "release-some-INTERNAL", fork = true }
|
run_task = { name = "release-some-INTERNAL", fork = true }
|
||||||
|
|
||||||
# Hack to filter out crates we do not want to release.
|
# Hack to filter out crates we do not want to release.
|
||||||
|
@ -40,7 +40,7 @@ args = ["release", "--config", "${CARGO_MAKE_WORKING_DIRECTORY}/../_build/releas
|
||||||
[tasks.release-dry-run]
|
[tasks.release-dry-run]
|
||||||
condition = { env_set = [ "RELEASE_LEVEL" ] }
|
condition = { env_set = [ "RELEASE_LEVEL" ] }
|
||||||
workspace = false
|
workspace = false
|
||||||
env = { "CARGO_MAKE_WORKSPACE_SKIP_MEMBERS" = "integration_tests/*" }
|
env = { "CARGO_MAKE_WORKSPACE_SKIP_MEMBERS" = "integration_tests/*;examples/*;juniper_benchmarks" }
|
||||||
run_task = { name = "release-dry-run-INTERNAL", fork = true }
|
run_task = { name = "release-dry-run-INTERNAL", fork = true }
|
||||||
|
|
||||||
[tasks.release-some-dry-run]
|
[tasks.release-some-dry-run]
|
||||||
|
@ -54,7 +54,7 @@ run_task = { name = "release-some-dry-run-INTERNAL", fork = true }
|
||||||
[tasks.release-dry-run-INTERNAL]
|
[tasks.release-dry-run-INTERNAL]
|
||||||
private = true
|
private = true
|
||||||
condition = { env_set = [ "RELEASE_LEVEL" ] }
|
condition = { env_set = [ "RELEASE_LEVEL" ] }
|
||||||
env = { "CARGO_MAKE_WORKSPACE_SKIP_MEMBERS" = "integration_tests/*" }
|
env = { "CARGO_MAKE_WORKSPACE_SKIP_MEMBERS" = "integration_tests/*;examples/*;juniper_benchmarks" }
|
||||||
description = "Run `cargo-release --dry-run` for every crate"
|
description = "Run `cargo-release --dry-run` for every crate"
|
||||||
command = "cargo-release"
|
command = "cargo-release"
|
||||||
args = ["release", "--config", "${CARGO_MAKE_WORKING_DIRECTORY}/../_build/release.toml", "--dry-run", "${RELEASE_LEVEL}"]
|
args = ["release", "--config", "${CARGO_MAKE_WORKING_DIRECTORY}/../_build/release.toml", "--dry-run", "${RELEASE_LEVEL}"]
|
||||||
|
@ -69,7 +69,7 @@ args = ["release", "--config", "${CARGO_MAKE_WORKING_DIRECTORY}/../_build/releas
|
||||||
[tasks.release-local-test]
|
[tasks.release-local-test]
|
||||||
condition = { env_set = [ "RELEASE_LEVEL" ] }
|
condition = { env_set = [ "RELEASE_LEVEL" ] }
|
||||||
workspace = false
|
workspace = false
|
||||||
env = { "CARGO_MAKE_WORKSPACE_SKIP_MEMBERS" = "integration_tests/*" }
|
env = { "CARGO_MAKE_WORKSPACE_SKIP_MEMBERS" = "integration_tests/*;examples/*;juniper_benchmarks" }
|
||||||
run_task = { name = "release-local-test-INTERNAL", fork = true }
|
run_task = { name = "release-local-test-INTERNAL", fork = true }
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue