File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,9 @@ vars.proj.coulomb: ${vars.base} {
9
9
10
10
extra.projects: ["coulomb_testsJVM"] // builds & tests everything.... I think
11
11
extra.commands: ${vars.default-commands} [
12
- // otherwise sbt-gpg errors on `publish`
12
+ // don't ask for passphrase when running locally
13
13
"set every gpgWarnOnFailure := true"
14
+ // prevent sbt-gpg from asking for passphrase when running locally
15
+ """set every gpgKey := Some("")"""
14
16
]
15
17
}
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ vars.proj.doobie: ${vars.base} {
10
10
"doobie" // just an aggregation, and causes missing-tut error
11
11
]
12
12
extra.commands: ${vars.default-commands} [
13
+ // don't ask for passphrase when running locally
14
+ """set every gpgKey := Some("")"""
13
15
// as per https://github.com/scala/community-builds/pull/835#issuecomment-455729365,
14
16
// these subprojects require a Postgres instance for the tests to run
15
17
"set postgres / Test / executeTests := Tests.Output(TestResult.Passed, Map(), Iterable())"
You can’t perform that action at this time.
0 commit comments