File tree Expand file tree Collapse file tree 4 files changed +14
-12
lines changed
prometheus-metrics-exposition-formats Expand file tree Collapse file tree 4 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 99* .iml
1010
1111target /
12+ build /
1213simpleclient_pushgateway /mockserver.log
1314simpleclient_pushgateway /mockserver_request.log
1415nb-configuration.xml
Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ protoc = "latest"
99[tasks .ci ]
1010description = " CI Build"
1111run = [
12- " ./mvnw clean install" ,
13- # just to check if javadoc can be generated
14- " ./mvnw javadoc:javadoc -P javadoc"
12+ " ./mvnw clean install" ,
13+ # just to check if javadoc can be generated
14+ " ./mvnw javadoc:javadoc -P javadoc"
1515]
1616env = { REQUIRE_PROTO_UP_TO_DATE = " true" }
1717
@@ -27,13 +27,20 @@ run = "./mvnw test -DskipTests=true -Dspotless.check.skip=true -Dcoverage.skip=t
2727description = " run all tests"
2828run = " ./mvnw verify"
2929
30+ [tasks .build ]
31+ description = " build all modules wihthout tests"
32+ run = " ./mvnw clean install -DskipTests"
33+
3034[tasks .acceptance-test ]
3135description = " Run OATs acceptance tests"
36+ depends = " build"
3237run = " oats -timeout 5m examples/"
3338
3439[tasks .native-test ]
35- tools.java = " graalvm-21.3.3+java17"
36- run = " ./scripts/run-native-tests.sh"
40+ depends = " build"
41+ tools.java = " graalvm-22.3.3+java17"
42+ run = " ../../mvnw test -PnativeTest"
43+ dir = " integration-tests/it-spring-boot-smoke-test"
3744
3845[settings ]
3946# to get lock file support and for go backend
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ if [[ $GENERATED_WITH != "$PROTOBUF_VERSION" ]]; then
4141 exit 1
4242fi
4343
44+ git checkout -- mise.lock # see https://github.com/jdx/mise/discussions/4782
4445STATUS=$( git status --porcelain)
4546if [[ ${REQUIRE_PROTO_UP_TO_DATE:- false} == " true" && -n " $STATUS " ]]; then
4647 echo " Please use https://mise.jdx.dev/ - this will use the version specified in mise.toml"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments