aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/preview-publish-ga.yml
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2023-04-21 18:29:22 +0200
committerGitHub <noreply@github.com>2023-04-21 18:29:22 +0200
commiteb50c4f28d978fcd914b819d523e8da607d05b0c (patch)
tree87041774b82c0af473e3766089f67d939f901eee /.github/workflows/preview-publish-ga.yml
parentde63c4479bcd9a81db25b5432df82edb98119410 (diff)
downloaddokka-eb50c4f28d978fcd914b819d523e8da607d05b0c.tar.gz
dokka-eb50c4f28d978fcd914b819d523e8da607d05b0c.tar.bz2
dokka-eb50c4f28d978fcd914b819d523e8da607d05b0c.zip
Clean up GitHub workflows (#2951)
* Run Gradle wrapper checksum less often * Do not publish examples as artifacts in internal PRs
Diffstat (limited to '.github/workflows/preview-publish-ga.yml')
-rw-r--r--.github/workflows/preview-publish-ga.yml96
1 files changed, 96 insertions, 0 deletions
diff --git a/.github/workflows/preview-publish-ga.yml b/.github/workflows/preview-publish-ga.yml
new file mode 100644
index 00000000..4171ede3
--- /dev/null
+++ b/.github/workflows/preview-publish-ga.yml
@@ -0,0 +1,96 @@
+name: Publish preview to GitHub Actions Artifacts
+
+on:
+ pull_request:
+ push:
+ branches:
+ - master
+ workflow_dispatch:
+
+jobs:
+ kotlinx-coroutines:
+ runs-on: ubuntu-latest
+ if: > # Run this job only for pull requests from forks because members with write access have web preview
+ github.event_name != 'pull_request' ||
+ (github.event_name == pull_request && github.event.pull_request.head.repo.full_name != 'Kotlin/dokka')
+ steps:
+ - name: Checkout dokka
+ uses: actions/checkout@v3
+ with:
+ submodules: true
+ - uses: actions/setup-java@v3
+ with:
+ distribution: 'zulu'
+ java-version: 17
+ cache: 'maven'
+ - name: Document coroutines
+ uses: gradle/gradle-build-action@v2
+ with:
+ gradle-home-cache-cleanup: true
+ arguments: :integration-tests:gradle:integrationTest --tests org.jetbrains.dokka.it.gradle.kotlin.CoroutinesGradleIntegrationTest --stacktrace
+ env:
+ DOKKA_TEST_OUTPUT_PATH: /home/runner/work/dokka/coroutines
+ - name: Copy files to GitHub Actions Artifacts
+ uses: actions/upload-artifact@v3
+ with:
+ name: dokka-coroutines
+ path: /home/runner/work/dokka/coroutines
+ retention-days: 7
+
+ kotlinx-serialization:
+ runs-on: ubuntu-latest
+ if: > # Run this job only for pull requests from forks because members with write access have web preview
+ github.event_name != 'pull_request' ||
+ (github.event_name == pull_request && github.event.pull_request.head.repo.full_name != 'Kotlin/dokka')
+ steps:
+ - name: Checkout dokka
+ uses: actions/checkout@v3
+ with:
+ submodules: true
+ - uses: actions/setup-java@v3
+ with:
+ distribution: 'zulu'
+ java-version: 17
+ cache: 'maven'
+ - name: Document serialization
+ uses: gradle/gradle-build-action@v2
+ with:
+ gradle-home-cache-cleanup: true
+ arguments: :integration-tests:gradle:integrationTest --tests org.jetbrains.dokka.it.gradle.kotlin.SerializationGradleIntegrationTest --stacktrace
+ env:
+ DOKKA_TEST_OUTPUT_PATH: /home/runner/work/dokka/serialization
+ - name: Copy files to GitHub Actions Artifacts
+ uses: actions/upload-artifact@v3
+ with:
+ name: dokka-serialization
+ path: /home/runner/work/dokka/serialization
+ retention-days: 7
+
+ biojava:
+ runs-on: ubuntu-latest
+ if: > # Run this job only for pull requests from forks because members with write access have web preview
+ github.event_name != 'pull_request' ||
+ (github.event_name == pull_request && github.event.pull_request.head.repo.full_name != 'Kotlin/dokka')
+ steps:
+ - name: Checkout dokka
+ uses: actions/checkout@v3
+ with:
+ submodules: true
+ - uses: actions/setup-java@v3
+ with:
+ distribution: 'zulu'
+ java-version: 17
+ cache: 'maven'
+ - name: Document biojava-core
+ uses: gradle/gradle-build-action@v2
+ with:
+ gradle-home-cache-cleanup: true
+ arguments: :integration-tests:maven:integrationTest --tests org.jetbrains.dokka.it.maven.BiojavaIntegrationTest --stacktrace
+ env:
+ DOKKA_TEST_OUTPUT_PATH: /home/runner/work/dokka/biojava
+ - name: Copy files to GitHub Actions Artifacts
+ uses: actions/upload-artifact@v3
+ with:
+ name: dokka-biojava
+ path: /home/runner/work/dokka/biojava
+ retention-days: 7