From 04fbd49b3731e324038d1f937515648c83686e49 Mon Sep 17 00:00:00 2001 From: darwincereska Date: Mon, 10 Nov 2025 15:29:57 -0500 Subject: [PATCH] fix(fixes): more fixes --- .github/workflows/release.yml | 3 +++ .gitignore | 2 +- .notevc/metadata.json | 8 ++++---- .notevc/timeline.json | 7 +++++++ build.gradle.kts | 7 +------ 5 files changed, 16 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8b382dd..ae6215c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,6 +31,9 @@ jobs: - name: Setup Gradle uses: gradle/actions/setup-gradle@v3 + - name: Build project + run: ./gradlew build + - name: Build native binary run: ./gradlew nativeCompile diff --git a/.gitignore b/.gitignore index 8680464..8f8eca0 100644 --- a/.gitignore +++ b/.gitignore @@ -28,4 +28,4 @@ Thumbs.db # Other *.hprof -.notevc/ +**/.notevc/ diff --git a/.notevc/metadata.json b/.notevc/metadata.json index b6a5726..153f779 100644 --- a/.notevc/metadata.json +++ b/.notevc/metadata.json @@ -1,11 +1,11 @@ { "version": "1.0.0", "created": "2025-11-07T02:45:31.185947Z", - "head": "faa8ece0", + "head": "1052853b", "lastCommit": { - "hash": "faa8ece0", - "message": "Updated readme", - "timestamp": "2025-11-07T19:12:43.784310Z", + "hash": "1052853b", + "message": "docs(readme): updated readme", + "timestamp": "2025-11-10T20:26:39.277835Z", "author": "darwin" } } \ No newline at end of file diff --git a/.notevc/timeline.json b/.notevc/timeline.json index 0cbc69d..33995cd 100644 --- a/.notevc/timeline.json +++ b/.notevc/timeline.json @@ -1,4 +1,11 @@ [ + { + "hash": "1052853b", + "message": "docs(readme): updated readme", + "timestamp": "2025-11-10T20:26:39.277835Z", + "author": "darwin", + "parent": "faa8ece0" + }, { "hash": "faa8ece0", "message": "Updated readme", diff --git a/build.gradle.kts b/build.gradle.kts index 75fec8d..647eab0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,7 @@ plugins { application id("com.github.gmazzo.buildconfig") version "4.1.2" id("com.gradleup.shadow") version "9.2.2" - id("org.graalvm.buildtools.native") version "0.10.3" + id("org.graalvm.buildtools.native") version "0.10.4" } group = "io.notevc" @@ -69,11 +69,6 @@ tasks.withType { useJUnitPlatform() } -// Remove this line - let GraalVM use the default classpath -// tasks.nativeCompile { -// dependsOn(tasks.shadowJar) -// } - tasks.build { dependsOn(tasks.shadowJar) }