From 3a2d23f075998874c95bd539de7dbdec5a897f29 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Wed, 15 Oct 2025 02:49:16 +0000 Subject: [PATCH 1/8] Use BLIS 2.0 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 4c8d53a..520f3fa 100644 --- a/Project.toml +++ b/Project.toml @@ -8,7 +8,7 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" blis_jll = "6136c539-28a5-5bf0-87cc-b183200dce32" [compat] -blis_jll = "1.0" +blis_jll = "2" julia = "1.8" [extras] From d3d28f69fa311c0a7ce71035d087b4444da0cc26 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Wed, 15 Oct 2025 02:57:12 +0000 Subject: [PATCH 2/8] Update CI file --- .github/workflows/CI.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 18bb9b3..8ebbb09 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -20,17 +20,19 @@ jobs: fail-fast: false matrix: version: - - '1.8' - '1.10' - - 'nightly' + - '1' os: - ubuntu-latest - windows-latest - - macOS-latest arch: - x64 + include: + - os: macOS-latest + julia-arch: aarch64 + steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} @@ -39,8 +41,9 @@ jobs: - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v4 + - uses: codecov/codecov-action@v5 with: file: lcov.info + token: ${{ secrets.CODECOV_TOKEN }} env: JULIA_NUM_THREADS: 4,2 From 3b9a4f9a93e49cbea8139de9d3bd5cd6fa1b6112 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Wed, 15 Oct 2025 02:57:27 +0000 Subject: [PATCH 3/8] Bump Julia to 1.10 since windows was failing on older builds --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 520f3fa..f50e629 100644 --- a/Project.toml +++ b/Project.toml @@ -9,7 +9,7 @@ blis_jll = "6136c539-28a5-5bf0-87cc-b183200dce32" [compat] blis_jll = "2" -julia = "1.8" +julia = "1.10" [extras] Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb" From b9643396aa00e0c514b0299fd0fd8d813ab0fb3c Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Wed, 15 Oct 2025 03:00:12 +0000 Subject: [PATCH 4/8] Fix ci file --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8ebbb09..6f9b467 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -27,7 +27,7 @@ jobs: - windows-latest arch: - x64 - include: + include: - os: macOS-latest julia-arch: aarch64 From aa7af376fd206b735a69cc7bfd2155d32a123493 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Wed, 15 Oct 2025 03:00:56 +0000 Subject: [PATCH 5/8] fix ci file --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6f9b467..22c3eb6 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -28,7 +28,7 @@ jobs: arch: - x64 include: - - os: macOS-latest + - os: macOS-latest julia-arch: aarch64 steps: From 726c17447458d77d91c8236d23e56aa8af9f69b1 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Wed, 15 Oct 2025 03:01:55 +0000 Subject: [PATCH 6/8] fix ci file --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 22c3eb6..3246b74 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -29,7 +29,7 @@ jobs: - x64 include: - os: macOS-latest - julia-arch: aarch64 + arch: aarch64 steps: - uses: actions/checkout@v5 From 41723a34d208fdad586613aa49ab56ced192494f Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Wed, 15 Oct 2025 03:03:53 +0000 Subject: [PATCH 7/8] fix ci file --- .github/workflows/CI.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3246b74..f855db5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -30,7 +30,11 @@ jobs: include: - os: macOS-latest arch: aarch64 - + version: '1.10' + - os: macOS-latest + arch: aarch64 + version: '1' + steps: - uses: actions/checkout@v5 - uses: julia-actions/setup-julia@v2 From 1739aff3b873cdf40a17d1aac77ee23b3cd30c35 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Tue, 14 Oct 2025 23:07:12 -0400 Subject: [PATCH 8/8] Fix indentation in CI.yml --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f855db5..0d8d152 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -34,7 +34,7 @@ jobs: - os: macOS-latest arch: aarch64 version: '1' - + steps: - uses: actions/checkout@v5 - uses: julia-actions/setup-julia@v2