diff options
author | Stefan M <StefMa@users.noreply.github.com> | 2022-09-01 16:27:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-01 17:27:11 +0300 |
commit | 7aae28c09fc52f67d18babb0238dc8a4d397c2ad (patch) | |
tree | 7e253e12ff8c296aee92b8eb86c33ab4354c2b95 /integration-tests/maven/src/integrationTest/kotlin/org/jetbrains | |
parent | 92e3d56042d34cb64d672aa7099fe72831ed849f (diff) | |
download | dokka-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 'integration-tests/maven/src/integrationTest/kotlin/org/jetbrains')
-rw-r--r-- | integration-tests/maven/src/integrationTest/kotlin/org/jetbrains/dokka/it/maven/BiojavaIntegrationTest.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integration-tests/maven/src/integrationTest/kotlin/org/jetbrains/dokka/it/maven/BiojavaIntegrationTest.kt b/integration-tests/maven/src/integrationTest/kotlin/org/jetbrains/dokka/it/maven/BiojavaIntegrationTest.kt index 4037cc08..bf5148ef 100644 --- a/integration-tests/maven/src/integrationTest/kotlin/org/jetbrains/dokka/it/maven/BiojavaIntegrationTest.kt +++ b/integration-tests/maven/src/integrationTest/kotlin/org/jetbrains/dokka/it/maven/BiojavaIntegrationTest.kt @@ -7,7 +7,7 @@ import kotlin.test.Test import kotlin.test.assertEquals import kotlin.test.assertTrue -class BiojavaIntegrationTest : AbstractIntegrationTest(), S3Project { +class BiojavaIntegrationTest : AbstractIntegrationTest(), TestOutputCopier { private val currentDokkaVersion: String = checkNotNull(System.getenv("DOKKA_VERSION")) private val mavenBinaryFile: File = File(checkNotNull(System.getenv("MVN_BINARY_PATH"))) |