From 9c1fe75ac8fa6709e13a52b39b9517c0f1bafcb7 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Tue, 27 Feb 2024 11:17:46 -0500 Subject: [PATCH 1/2] Update CI for aarch64, codecov 4 token --- .github/workflows/test.yml | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 75d36d4..5422872 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,11 +14,25 @@ jobs: fail-fast: false matrix: julia-version: ['1.0', '1.6', '1', 'nightly'] - julia-arch: [x64, x86] - os: [ubuntu-latest, macOS-latest, windows-latest] + julia-arch: [x64, x86, aarch64] + os: [ubuntu-latest, windows-latest, macOS-13, macOS-14] exclude: - - os: macOS-latest - julia-arch: x86 + - os: ubuntu-latest + arch: aarch64 + - os: windows-latest + arch: aarch64 + - os: macOS-13 + arch: x86 + - os: macOS-13 + arch: aarch64 + - os: macOS-14 + arch: x86 + - os: macOS-14 + arch: x64 + - os: macOS-14 + version: '1.6' + - os: macOS-14 + version: '1.0' steps: - name: Set git to use LF (Windows only) @@ -42,3 +56,4 @@ jobs: - uses: codecov/codecov-action@v4 with: file: lcov.info + token: ${{ secrets.CODECOV_TOKEN }} From b3bfe2e69eb3d0a6e22d9e7b5f6d284ce9a12406 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Tue, 27 Feb 2024 11:23:25 -0500 Subject: [PATCH 2/2] Update test.yml --- .github/workflows/test.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5422872..a13eed5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,21 +18,21 @@ jobs: os: [ubuntu-latest, windows-latest, macOS-13, macOS-14] exclude: - os: ubuntu-latest - arch: aarch64 + julia-arch: aarch64 - os: windows-latest - arch: aarch64 + julia-arch: aarch64 - os: macOS-13 - arch: x86 + julia-arch: x86 - os: macOS-13 - arch: aarch64 + julia-arch: aarch64 - os: macOS-14 - arch: x86 + julia-arch: x86 - os: macOS-14 - arch: x64 + julia-arch: x64 - os: macOS-14 - version: '1.6' + julia-version: '1.6' - os: macOS-14 - version: '1.0' + julia-version: '1.0' steps: - name: Set git to use LF (Windows only)