From 9df5fb2e2bd39180592df326ee98bc93a4b6818b Mon Sep 17 00:00:00 2001 From: Lee Rhodes Date: Wed, 26 Aug 2026 17:59:14 -0700 Subject: [PATCH 1/2] Fix .asf.yaml error: jobs "" is illegal entry. --- .asf.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.asf.yaml b/.asf.yaml index e3a73a41..d99030ee 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -31,4 +31,3 @@ notifications: pullrequests: dev@datasketches.apache.org # Setting jobs to an empty string completely silences # GitHub Actions success/failure emails to the dev list. - jobs: "" \ No newline at end of file From dd23bc379ac5f1496318a771f39c42c0317d70ef Mon Sep 17 00:00:00 2001 From: Lee Rhodes Date: Wed, 26 Aug 2026 18:03:58 -0700 Subject: [PATCH 2/2] Change notes for windows --- .../datasketches/memory/internal/UtilitiesForTest.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/datasketches-memory-java11/src/test/java/org/apache/datasketches/memory/internal/UtilitiesForTest.java b/datasketches-memory-java11/src/test/java/org/apache/datasketches/memory/internal/UtilitiesForTest.java index ae95e74a..f8c4d384 100644 --- a/datasketches-memory-java11/src/test/java/org/apache/datasketches/memory/internal/UtilitiesForTest.java +++ b/datasketches-memory-java11/src/test/java/org/apache/datasketches/memory/internal/UtilitiesForTest.java @@ -98,10 +98,7 @@ public static File getResourceFile(final String resourceName) { // Use REPLACE_EXISTING to avoid "File Already Exists" errors on Windows retries Files.copy(in, tempFile.toPath(), StandardCopyOption.REPLACE_EXISTING); } catch (final IOException e) { throw new IllegalArgumentException(e); } - - // Final Windows Fix: Ensure the file is actually writable if you need to setReadOnly later - //tempFile.setWritable(true); - + return tempFile; }