Skip to content

Commit 3527cdd

Browse files
committed
use mise
Signed-off-by: Gregor Zeitlinger <[email protected]>
1 parent 749e1b4 commit 3527cdd

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,5 @@ jobs:
2323
env:
2424
PROTO_GENERATION: true
2525
REQUIRE_PROTO_UP_TO_DATE: true
26-
run: |
27-
mise run ci
28-
mvn -v
29-
./mvnw clean install
30-
./mvnw javadoc:javadoc -P javadoc # just to check if javadoc is generated
26+
run: mise run ci
27+

mise.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,12 @@ PROTO_GENERATION = "true"
44
[tools]
55
java = "temurin-17.0.13+11"
66
protoc = "30.1"
7+
8+
[tasks.ci]
9+
description = "CI Build"
10+
run = [
11+
"./mvnw clean install",
12+
# just to check if javadoc can be generated
13+
"./mvnw javadoc:javadoc -P javadoc"
14+
]
15+
env = { PROTO_GENERATION = "true", REQUIRE_PROTO_UP_TO_DATE = "true" }

0 commit comments

Comments
 (0)