From f7b85d93e702bf389b0b94158bef98c82c6b9282 Mon Sep 17 00:00:00 2001 From: withanage Date: Sun, 5 May 2024 21:02:11 +0200 Subject: [PATCH 1/3] Webfeed wait feed settings --- cypress/tests/integration/plugins/generic/WebFeed.spec.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cypress/tests/integration/plugins/generic/WebFeed.spec.js b/cypress/tests/integration/plugins/generic/WebFeed.spec.js index 6952228555..cba48b961e 100644 --- a/cypress/tests/integration/plugins/generic/WebFeed.spec.js +++ b/cypress/tests/integration/plugins/generic/WebFeed.spec.js @@ -18,6 +18,7 @@ describe('Web Feed plugin tests', () => { cy.wait(2e3); cy.get('a[id^="component-grid-settings-plugins-settingsplugingrid-category-generic-row-webfeedplugin-settings-button-"]').click({force: true}); cy.get('#displayPage-all').check(); + cy.wait(2000); cy.get('input[id^="recentItems"]').clear().type(feedSize, {delay: 0}); cy.get('#includeIdentifiers').check(); cy.get('form[id="webFeedSettingsForm"] button[id^="submitFormButton"]').click(); From 9d4141c982c18d47cebd87833462292d76088dc4 Mon Sep 17 00:00:00 2001 From: withanage Date: Sun, 5 May 2024 21:29:51 +0200 Subject: [PATCH 2/3] Submodule update ##pkp-lib/pkp-lib-stable-3_3_0-i9214-phpunit## --- lib/pkp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pkp b/lib/pkp index 0201fd106c..9d58a1d4b3 160000 --- a/lib/pkp +++ b/lib/pkp @@ -1 +1 @@ -Subproject commit 0201fd106cc0db93e2fd45c200be0d464c0aec61 +Subproject commit 9d58a1d4b33d7f198a7fff5ebd35f3bb37bd2f11 From 0ef8054b8162e202ad4511f71b5c6889357e7137 Mon Sep 17 00:00:00 2001 From: withanage Date: Sun, 5 May 2024 21:35:15 +0200 Subject: [PATCH 3/3] Submodule update ##withanage/pkp-lib-stable-3_3_0-i9214-phpunit## --- .github/workflows/stable-3_3_0.yml | 59 ++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 .github/workflows/stable-3_3_0.yml diff --git a/.github/workflows/stable-3_3_0.yml b/.github/workflows/stable-3_3_0.yml new file mode 100644 index 0000000000..2b5920dc36 --- /dev/null +++ b/.github/workflows/stable-3_3_0.yml @@ -0,0 +1,59 @@ +on: + push: + branches: + - '*' + pull_request: + branches: + ['stable-3_3_0'] +name: ops +jobs: + ops: + runs-on: ubuntu-20.04 + strategy: + fail-fast: false + matrix: + include: + - php-version: 8.0 + validate: 'validate' + - php-version: 7.3 + database: pgsql + test: 'test' + - php-version: 7.3 + database: mysql + test: 'test' + - php-version: 7.4 + database: pgsql + test: 'test' + - php-version: 7.4 + database: mysql + test: 'test' + - php-version: 8.0 + database: mysql + test: 'test' + SAVE_BUILD: 'save_build' + - php-version: 8.0 + database: pgsql + test: 'test' + SAVE_BUILD: 'save_build' + - php-version: 8.1 + database: mysql + test: 'test' + - php-version: 8.1 + database: pgsql + test: 'test' + - php-version: 8.2 + database: mysql + test: 'test' + - php-version: 8.2 + database: pgsql + test: 'test' + + + name: ops + steps: + - uses: xmlFlow/pkp-github-actions@v1 + with: + node_version: 12 + dataset_branch: 'stable-3_3_0' + DATASETS_ACCESS_KEY: ${{secrets.DATASETS_ACCESS_KEY}} + DEBUG_IN_TMATE: true