aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/gh-actions-artifacts-snapshots.yml
diff options
context:
space:
mode:
authorStefan M <StefMa@users.noreply.github.com>2022-09-01 16:27:11 +0200
committerGitHub <noreply@github.com>2022-09-01 17:27:11 +0300
commit7aae28c09fc52f67d18babb0238dc8a4d397c2ad (patch)
tree7e253e12ff8c296aee92b8eb86c33ab4354c2b95 /.github/workflows/gh-actions-artifacts-snapshots.yml
parent92e3d56042d34cb64d672aa7099fe72831ed849f (diff)
downloaddokka-7aae28c09fc52f67d18babb0238dc8a4d397c2ad.tar.gz
dokka-7aae28c09fc52f67d18babb0238dc8a4d397c2ad.tar.bz2
dokka-7aae28c09fc52f67d18babb0238dc8a4d397c2ad.zip
Use GitHub Actions Artifacts to store snapshots instead of S3 (#2630)
* Use GitHub Actions Artifacts for snapshots * Delete s3-cleanup.yml * Fix trigger event * Fix path * Fix path again * Maybe this path is better * Restore env variable to save output to a known place * Add retention days * Replace stdlib with coroutines * Replace S3Project with TestOutputCopier * Restore S3 upload * Change job name * Fix imports * Add TestOutputCopier to SdtlibIntegrationTest * Save stdlib on S3 again * Rename env variable * Increase rentention-days * Remove .kt as filter for test * Fix skiping copying message * Update Gradle and Kotlin version
Diffstat (limited to '.github/workflows/gh-actions-artifacts-snapshots.yml')
-rw-r--r--.github/workflows/gh-actions-artifacts-snapshots.yml83
1 files changed, 83 insertions, 0 deletions
diff --git a/.github/workflows/gh-actions-artifacts-snapshots.yml b/.github/workflows/gh-actions-artifacts-snapshots.yml
new file mode 100644
index 00000000..3bac4340
--- /dev/null
+++ b/.github/workflows/gh-actions-artifacts-snapshots.yml
@@ -0,0 +1,83 @@
+name: Build example projects and publish them to GitHub Actions Artifacts
+
+on:
+ pull_request:
+ push:
+ branches:
+ - master
+
+jobs:
+ coroutines:
+ runs-on: ubuntu-latest
+ if: github.repository == 'Kotlin/dokka'
+ steps:
+ - name: Checkout dokka
+ uses: actions/checkout@v3
+ with:
+ submodules: true
+ - uses: actions/setup-java@v3
+ with:
+ distribution: 'zulu'
+ java-version: 12
+ - name: Document coroutines
+ uses: gradle/gradle-build-action@v2
+ with:
+ 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
+
+ serialization:
+ runs-on: ubuntu-latest
+ if: github.repository == 'Kotlin/dokka'
+ steps:
+ - name: Checkout dokka
+ uses: actions/checkout@v3
+ with:
+ submodules: true
+ - uses: actions/setup-java@v3
+ with:
+ distribution: 'zulu'
+ java-version: 12
+ - name: Document serialization
+ uses: gradle/gradle-build-action@v2
+ with:
+ 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: github.repository == 'Kotlin/dokka'
+ steps:
+ - name: Checkout dokka
+ uses: actions/checkout@v3
+ with:
+ submodules: true
+ - uses: actions/setup-java@v3
+ with:
+ distribution: 'zulu'
+ java-version: 12
+ - name: Document biojava-core
+ uses: gradle/gradle-build-action@v2
+ with:
+ 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