Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename jvm-reachability-metadata -> graalvm-reachability-metadata #265

Merged
merged 1 commit into from
Jul 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/test-graalvm-metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: "Test GraalVM Reachability Metadata Repository"
on:
push:
paths:
- 'common/jvm-reachability-metadata/**'
- 'common/graalvm-reachability-metadata/**'
- '.github/actions/prepare-environment'
- '.github/workflows/test-graalvm-metadata.yml'
pull_request:
paths:
- 'common/jvm-reachability-metadata/**'
- 'common/graalvm-reachability-metadata/**'
- '.github/actions/prepare-environment'
- '.github/workflows/test-graalvm-metadata.yml'
workflow_dispatch:
Expand Down Expand Up @@ -37,12 +37,12 @@ jobs:
java-version: ${{ matrix.java-version }}
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: "❓ Checkstyle"
run: ./gradlew :jvm-reachability-metadata:checkstyleMain :jvm-reachability-metadata:checkstyleTest
run: ./gradlew :graalvm-reachability-metadata:checkstyleMain :graalvm-reachability-metadata:checkstyleTest
- name: "❓ GraalVM Reachability Metadata test"
run: ./gradlew :jvm-reachability-metadata:test
run: ./gradlew :graalvm-reachability-metadata:test
- name: "📜 Upload tests results"
if: always()
uses: actions/upload-artifact@v2
with:
name: tests-results
path: common/jvm-reachability-metadata/build/reports/tests/
path: common/graalvm-reachability-metadata/build/reports/tests/
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ plugins {
id("org.graalvm.build.common")
}

rootProject.name = "jvm-reachability-metadata"
rootProject.name = "graalvm-reachability-metadata"
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ nativeGradlePlugin = { module = "org.graalvm.buildtools:native-gradle-plugin", v
nativeMavenPlugin = { module = "org.graalvm.buildtools:native-maven-plugin", version.ref = "nativeBuildTools" }
junitPlatformNative = { module = "org.graalvm.buildtools:junit-platform-native", version.ref = "nativeBuildTools" }
utils = { module = "org.graalvm.buildtools:utils", version.ref = "nativeBuildTools" }
jvmReachabilityMetadata = { module = "org.graalvm.buildtools:jvm-reachability-metadata", version.ref = "nativeBuildTools" }
jvmReachabilityMetadata = { module = "org.graalvm.buildtools:graalvm-reachability-metadata", version.ref = "nativeBuildTools" }

# External dependencies
test-junit-platform-console = { module = "org.junit.platform:junit-platform-console", version.ref = "junitPlatform" }
Expand Down
2 changes: 1 addition & 1 deletion native-maven-plugin/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ rootProject.name = "native-maven-plugin"

includeBuild("../common/junit-platform-native")
includeBuild("../common/utils")
includeBuild("../common/jvm-reachability-metadata")
includeBuild("../common/graalvm-reachability-metadata")
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ rootProject.name = "native-build-tools"

includeBuild("common/junit-platform-native")
includeBuild("common/utils")
includeBuild("common/jvm-reachability-metadata")
includeBuild("common/graalvm-reachability-metadata")
includeBuild("native-gradle-plugin")
includeBuild("native-maven-plugin")
includeBuild("docs")