From 0a24e50d08c53e904c9cae29e7d378246a1b5a55 Mon Sep 17 00:00:00 2001 From: Ferdinand Kuhl Date: Thu, 26 Jan 2023 12:43:03 +0100 Subject: [PATCH 1/2] Allow Flow 8.2 --- .woodpecker/functional-tests.yml | 1 + composer.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.woodpecker/functional-tests.yml b/.woodpecker/functional-tests.yml index eb0a840..b9593ab 100644 --- a/.woodpecker/functional-tests.yml +++ b/.woodpecker/functional-tests.yml @@ -5,6 +5,7 @@ workspace: matrix: FLOW_VERSION: - 7.3 + - 8.2 PHP_VERSION: - 7.4 - 8.1 diff --git a/composer.json b/composer.json index c148b76..dea3505 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "Session locking for Neos Flow - it secures the session becoming corrupted by concurrent access to the same session by different requests", "type": "neos-package", "require": { - "neos/flow": "^7.3.0", + "neos/flow": "^7.3.0 | ^8.2", "php": "^7.4 | ^8.1", "symfony/lock": "^5.2.0 | ^6.2.0" }, From c29106fb9f1f7625360a95f7bed4a9977757b827 Mon Sep 17 00:00:00 2001 From: Ferdinand Kuhl Date: Thu, 26 Jan 2023 13:02:02 +0100 Subject: [PATCH 2/2] trying to understand matrix building --- .woodpecker/functional-tests.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.woodpecker/functional-tests.yml b/.woodpecker/functional-tests.yml index b9593ab..a520650 100644 --- a/.woodpecker/functional-tests.yml +++ b/.woodpecker/functional-tests.yml @@ -3,12 +3,14 @@ workspace: path: package matrix: - FLOW_VERSION: - - 7.3 - - 8.2 - PHP_VERSION: - - 7.4 - - 8.1 + include: + - FLOW_VERSION: 7.3 + PHP_VERSION: 7.4 + - FLOW_VERSION: 7.3 + PHP_VERSION: 8.1 + - FLOW_VERSION: 8.2 + PHP_VERSION: 8.1 + pipeline: functional-tests: