From 485b9c41e6ff518144923b5708d9b4971ae1f158 Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Sun, 8 Jun 2025 13:43:03 -0300 Subject: [PATCH 1/3] Fix warnings --- .github/workflows/Test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 3c04f0f59..9a413237d 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -39,7 +39,7 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: false - file: lcov.info + files: lcov.info opencl: name: OpenCL.jl runs-on: ubuntu-latest @@ -90,7 +90,7 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: false - file: lcov.info + files: lcov.info docs: name: Documentation runs-on: ubuntu-latest From 81a33eb5d4360fe6fe058ce366dd1614eb60425a Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Sun, 8 Jun 2025 13:45:17 -0300 Subject: [PATCH 2/3] Silence more warnings --- .github/workflows/Test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 9a413237d..769cb174c 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -9,14 +9,14 @@ on: jobs: test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} + name: Julia ${{ matrix.version }} - ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: version: ['1.10', '1.11', '^1.12.0-0', 'nightly'] os: [ubuntu-latest, macOS-latest, windows-latest] - arch: [x64] + arch: [default] steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 From 6e88874682aff7f8a7ee4198945f96445794090a Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Sun, 8 Jun 2025 13:57:11 -0300 Subject: [PATCH 3/3] Test not specifying arch --- .github/workflows/Test.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 769cb174c..cacab52ed 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -16,13 +16,11 @@ jobs: matrix: version: ['1.10', '1.11', '^1.12.0-0', 'nightly'] os: [ubuntu-latest, macOS-latest, windows-latest] - arch: [default] steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} - arch: ${{ matrix.arch }} - uses: julia-actions/cache@v2 - name: Develop subpackages run: | @@ -48,7 +46,6 @@ jobs: - uses: julia-actions/setup-julia@v2 with: version: '1.10' - arch: x64 - uses: julia-actions/cache@v2 - name: Run tests run: |