From 825a57e177593de44225b4e9a9483e15b78f23d1 Mon Sep 17 00:00:00 2001 From: nhz2 Date: Sun, 5 Oct 2025 10:42:08 -0400 Subject: [PATCH 1/5] Bump version to 0.8.7 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 120a591..613202c 100644 --- a/Project.toml +++ b/Project.toml @@ -3,7 +3,7 @@ uuid = "6b39b394-51ab-5f42-8807-6242bab2b4c2" license = "MIT" authors = ["Kenta Sato ", "JuliaIO Github Organization"] -version = "0.8.7-dev" +version = "0.8.7" [deps] TranscodingStreams = "3bb67fe8-82b1-5028-8e26-92a6c54297fa" From 82e35346cee346c047c18f5ecc4078ad757478fc Mon Sep 17 00:00:00 2001 From: nhz2 Date: Sun, 5 Oct 2025 20:03:20 -0400 Subject: [PATCH 2/5] Add more downstream tests --- .github/workflows/Downstream.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/Downstream.yml b/.github/workflows/Downstream.yml index 3b398eb..421d481 100644 --- a/.github/workflows/Downstream.yml +++ b/.github/workflows/Downstream.yml @@ -14,7 +14,13 @@ jobs: matrix: package: - "Arrow" + - "Avro" + - "BGEN" - "HDF5" + - "JetReconstruction" + - "Parquet" + - "SquashFS" + - "Thrift" steps: - uses: actions/checkout@v5 - uses: julia-actions/setup-julia@v2 From 8d601abefd4f5f501a9643e1ddc98ca1434ae6c2 Mon Sep 17 00:00:00 2001 From: Nathan Zimmerberg <39104088+nhz2@users.noreply.github.com> Date: Fri, 7 Nov 2025 20:55:02 -0500 Subject: [PATCH 3/5] Fix downstream tests that only work with one thread --- .github/workflows/Downstream.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Downstream.yml b/.github/workflows/Downstream.yml index 421d481..bfeb1fd 100644 --- a/.github/workflows/Downstream.yml +++ b/.github/workflows/Downstream.yml @@ -29,7 +29,7 @@ jobs: arch: x64 - uses: julia-actions/julia-buildpkg@latest - name: Load this and run the downstream tests - shell: julia --color=yes {0} + shell: julia --threads=1,0 --color=yes {0} run: | using Pkg Pkg.Registry.update() From 92313bf268900c7c2d58b3a2b85312fbf3d468d7 Mon Sep 17 00:00:00 2001 From: Nathan Zimmerberg <39104088+nhz2@users.noreply.github.com> Date: Fri, 7 Nov 2025 21:13:43 -0500 Subject: [PATCH 4/5] Use env to set number of threads --- .github/workflows/Downstream.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Downstream.yml b/.github/workflows/Downstream.yml index bfeb1fd..648a79b 100644 --- a/.github/workflows/Downstream.yml +++ b/.github/workflows/Downstream.yml @@ -29,7 +29,9 @@ jobs: arch: x64 - uses: julia-actions/julia-buildpkg@latest - name: Load this and run the downstream tests - shell: julia --threads=1,0 --color=yes {0} + env: + JULIA_NUM_THREADS: "1" + shell: julia --color=yes {0} run: | using Pkg Pkg.Registry.update() From 26d5ed4184f64313f54e0a6a379fb5d699749c9c Mon Sep 17 00:00:00 2001 From: Nathan Zimmerberg <39104088+nhz2@users.noreply.github.com> Date: Fri, 7 Nov 2025 22:14:52 -0500 Subject: [PATCH 5/5] Disable Arrow package in Downstream.yml Commented out the Arrow package to reduce test duration. --- .github/workflows/Downstream.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Downstream.yml b/.github/workflows/Downstream.yml index 648a79b..6dd0ef6 100644 --- a/.github/workflows/Downstream.yml +++ b/.github/workflows/Downstream.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: package: - - "Arrow" + # - "Arrow" # Disabled because the tests take over an hour to run - "Avro" - "BGEN" - "HDF5"