add build_api_docs to the CI

This commit is contained in:
James Seibel
2023-06-26 19:26:22 -05:00
parent 7d8ab781cb
commit 5e242561bd
+25
View File
@@ -9,6 +9,7 @@ stages:
- build_1_18_2
- build_1_19_4
- build_1_20_1
- build_api_javadocs
variables:
# Pull core when building
@@ -120,6 +121,30 @@ build_1_20_1:
allow_failure: true
# generate API javadocs
build_api_javadocs:
stage: build_api_javadocs
script:
# this should only run for the API
- ./gradlew api:clean --gradle-user-home cache/;
# this also runs unit tests
- ./gradlew api:build --gradle-user-home cache/;
- ./gradlew api:javadoc --gradle-user-home cache/;
image: eclipse-temurin:17
artifacts:
name: "ApiJavaDoc-${CI_COMMIT_SHORT_SHA}-${CI_COMMIT_TIMESTAMP}"
paths:
- $CI_PROJECT_DIR/coreSubProjects/api/build/docs/javadoc/
expose_as: "apiJavaDocs"
when: always
cache:
key: "gradleCache"
policy: pull-push
paths:
- .gradle
- cache/
allow_failure: false