From 27b61940b0adda927ab6d67204dd7c8552798d34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Thi=C3=A9baut?= Date: Wed, 16 Oct 2024 18:32:20 +0200 Subject: [PATCH 1/3] Extend compatibility for `TypeUtils` I do not known why the `CompatHelper` workflow did not automatically solve this... --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index bc31833..2b9dad8 100644 --- a/Project.toml +++ b/Project.toml @@ -22,7 +22,7 @@ CUTEst = "1.0.1" NLPModels = "0.21.3" PRIMA_jll = "0.7.1" Requires = "1" -TypeUtils = "0.3" +TypeUtils = "0.3, 1" julia = "1.6" [extras] From f4e5d594db76ab9ea71a679a5b92d08599d95cd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Thi=C3=A9baut?= Date: Wed, 16 Oct 2024 18:35:55 +0200 Subject: [PATCH 2/3] Update CI.yml --- .github/workflows/CI.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c86c018..04f613f 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -15,6 +15,11 @@ jobs: test: name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} + continue-on-error: ${{ matrix.version == 'nightly' }} + timeout-minutes: 60 + permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created + actions: write + contents: read strategy: fail-fast: false matrix: @@ -29,15 +34,17 @@ jobs: - x64 - x86 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - - uses: julia-actions/cache@v1 + - uses: julia-actions/cache@v2 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 with: files: lcov.info + token: ${{ secrets.CODECOV_TOKEN }} + fail_ci_if_error: false From 87234461ea9eaa0a43247b5f99b5851d14cf1957 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Thi=C3=A9baut?= Date: Wed, 16 Oct 2024 18:36:18 +0200 Subject: [PATCH 3/3] Bump version --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 2b9dad8..28bda91 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "PRIMA" uuid = "0a7d04aa-8ac2-47b3-b7a7-9dbd6ad661ed" authors = ["Éric Thiébaut and contributors"] -version = "0.2.1" +version = "0.2.2" [deps] LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"