Skip to content

Commit

Permalink
Rename benchmark project
Browse files Browse the repository at this point in the history
  • Loading branch information
OptimumCode committed Jul 1, 2024
1 parent d0374df commit e407178
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
with:
gradle-version: wrapper
- name: Run benchmark for JVM
run: ./gradlew :benchmark:jvmBenchmark
run: ./gradlew :snake-kmp-benchmarks:jvmBenchmark
- name: Find JVM benchmark result
id: results
run: echo "report=$(find benchmark/build/reports/benchmarks/main/ -name jvm.json -type f)" >> $GITHUB_OUTPUT
run: echo "report=$(find snake-kmp-benchmarks/build/reports/benchmarks/main/ -name jvm.json -type f)" >> $GITHUB_OUTPUT
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
Expand All @@ -47,4 +47,4 @@ jobs:
alert-threshold: '200%'
github-token: ${{ secrets.GITHUB_TOKEN }}
# Push and deploy GitHub pages branch automatically only if run in main repo and not in PR
auto-push: ${{ github.repository == 'krzema12/snakeyaml-engine-kmp' && github.event_name != 'pull_request' }}
auto-push: ${{ github.repository == 'krzema12/snakeyaml-engine-kmp' && github.event_name != 'pull_request' }}
5 changes: 3 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
rootProject.name = "snakeyaml-engine-kmp"

include("benchmark")

pluginManagement {
repositories {
mavenCentral()
Expand Down Expand Up @@ -57,3 +55,6 @@ dependencyResolutionManagement {

enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")


include("snake-kmp-benchmarks")
File renamed without changes.

0 comments on commit e407178

Please sign in to comment.