From b9cda2deba74f2b4809ec30880a574ad8a5e6e17 Mon Sep 17 00:00:00 2001 From: Lucas Schwiderski Date: Sun, 14 Aug 2022 17:19:29 +0200 Subject: [PATCH] feat(ci): Allow CI to fail for 5.4 LGI doesn't have a rock compatible with 5.4, yet. --- .ci/pipeline.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.ci/pipeline.yml b/.ci/pipeline.yml index 7e66b4e..dd5fb3d 100644 --- a/.ci/pipeline.yml +++ b/.ci/pipeline.yml @@ -25,10 +25,12 @@ jobs: file: repo/.ci/test.yml vars: lua-version: 5.3 - - task: run-test-5.4 - file: repo/.ci/test.yml - vars: - lua-version: 5.4 + # There is no rock for 5.4 LGI, yet. And I don't want to build that from source. + - try: + task: run-test-5.4 + file: repo/.ci/test.yml + vars: + lua-version: 5.4 - name: rock plan: @@ -47,7 +49,9 @@ jobs: file: repo/.ci/rock.yml vars: lua-version: 5.3 - - task: run-rock-5.4 - file: repo/.ci/rock.yml - vars: - lua-version: 5.4 + # There is no rock for 5.4 LGI, yet. And I don't want to build that from source. + - try: + task: run-rock-5.4 + file: repo/.ci/rock.yml + vars: + lua-version: 5.4