From eefc92ebb51706edb349f2637b5450aa483b7be3 Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Tue, 1 Oct 2024 20:25:07 +0200 Subject: [PATCH 1/5] Allow CI failure on pre-release and nightly --- .github/workflows/CI.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 832a95f204..910b93920b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -17,12 +17,13 @@ jobs: test: name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ matrix.libReactant }} libReactant - assertions=${{ matrix.assertions }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} + continue-on-error: ${{ matrix.allow_failure }} strategy: fail-fast: false matrix: version: - '1.10' - - '~1.11.0-0' + - 'pre' - 'nightly' os: - ubuntu-20.04 @@ -38,6 +39,13 @@ jobs: libReactant: packaged version: '1.10' assertions: true + include: + - version: '1.10' + allow_failure: false + - version: 'pre' + allow_failure: true + - version: 'nightly' + allow_failure: true steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 From e0957b247363da32177ec8121c9f333fef821515 Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Tue, 1 Oct 2024 20:26:03 +0200 Subject: [PATCH 2/5] Fix --- .github/workflows/CI.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 910b93920b..24fd76f999 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -39,7 +39,6 @@ jobs: libReactant: packaged version: '1.10' assertions: true - include: - version: '1.10' allow_failure: false - version: 'pre' From 55533ecdb4d60f5a2e07c9ef556f23a1b152a6dc Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Tue, 1 Oct 2024 21:05:40 +0200 Subject: [PATCH 3/5] No pre --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 24fd76f999..a390141ada 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -23,7 +23,7 @@ jobs: matrix: version: - '1.10' - - 'pre' + - '~1.11.0-0' - 'nightly' os: - ubuntu-20.04 @@ -41,7 +41,7 @@ jobs: assertions: true - version: '1.10' allow_failure: false - - version: 'pre' + - version: '~1.11.0-0' allow_failure: true - version: 'nightly' allow_failure: true From f94eda93544a9b4e7c2d87595d69c8de6a8df309 Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Wed, 2 Oct 2024 07:28:08 +0200 Subject: [PATCH 4/5] Simplify --- .github/workflows/CI.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a390141ada..2f873be9ed 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -17,7 +17,7 @@ jobs: test: name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ matrix.libReactant }} libReactant - assertions=${{ matrix.assertions }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} - continue-on-error: ${{ matrix.allow_failure }} + continue-on-error: ${{ matrix.version != '1.10' }} strategy: fail-fast: false matrix: @@ -39,12 +39,6 @@ jobs: libReactant: packaged version: '1.10' assertions: true - - version: '1.10' - allow_failure: false - - version: '~1.11.0-0' - allow_failure: true - - version: 'nightly' - allow_failure: true steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 From 482a72d49e946cb31e1080bd4f154409bcc16d21 Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Mon, 4 Nov 2024 13:13:54 +0100 Subject: [PATCH 5/5] Update .github/workflows/CI.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sergio Sánchez Ramírez <15837247+mofeing@users.noreply.github.com> --- .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 2f873be9ed..6cb9478809 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -17,7 +17,7 @@ jobs: test: name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ matrix.libReactant }} libReactant - assertions=${{ matrix.assertions }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} - continue-on-error: ${{ matrix.version != '1.10' }} + continue-on-error: ${{ matrix.version == 'nightly' }} strategy: fail-fast: false matrix: