From 375812bd7e98745f16b48370790db211ec52e180 Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Fri, 22 Nov 2024 10:12:36 -0500 Subject: [PATCH 1/3] Update/Fix CI setup --- .github/workflows/ci.yml | 31 ++++++++++--------------------- 1 file changed, 10 insertions(+), 21 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f0d0198c..5a7ed99fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: fail-fast: false matrix: version: - - '1.6' + - 'lts' - '1' # automatically expands to the latest stable 1.x release of Julia - 'nightly' os: @@ -29,30 +29,18 @@ jobs: - macOS-latest - windows-latest arch: - - x64 + - default include: - os: windows-latest version: '1' arch: x86 - exclude: - - os: windows-latest - version: '1.6' steps: - - uses: actions/checkout@v3 - - uses: julia-actions/setup-julia@v1 + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - - uses: actions/cache@v3 - env: - cache-name: cache-artifacts - with: - path: ~/.julia/artifacts - key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} - restore-keys: | - ${{ runner.os }}-test-${{ env.cache-name }}- - ${{ runner.os }}-test- - ${{ runner.os }}- + - uses: julia-actions/cache@v2 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 env: @@ -60,15 +48,16 @@ jobs: JULIA_VERSION: ${{ matrix.version }} JULIA_NUM_THREADS: 2 - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v1 + - uses: codecov/codecov-action@v5 with: - file: lcov.info + files: lcov.info + token: ${{ secrets.GITHUB_TOKEN }} docs: name: Documentation runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: julia-actions/setup-julia@v1 + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v2 with: version: '1' - run: | From dce385cc3de19b27b7c17bd8fa24aa68539388da Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Fri, 22 Nov 2024 11:37:31 -0500 Subject: [PATCH 2/3] Update ci.yml --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a7ed99fa..8c83ef019 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,7 @@ jobs: fail-fast: false matrix: version: + - 'min' - 'lts' - '1' # automatically expands to the latest stable 1.x release of Julia - 'nightly' From a80d72f05efdd2bb94e80758fae487919cf6acdb Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Fri, 22 Nov 2024 12:09:33 -0500 Subject: [PATCH 3/3] skip min on macos --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c83ef019..872dd67b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,6 +35,9 @@ jobs: - os: windows-latest version: '1' arch: x86 + exclude: + - os: macOS-latest + version: 'min' # no apple silicon support for Julia 1.6 steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2