[Rt-commit] rt branch 5.0/docker-testing-buster updated. rt-5.0.3-25-g427043099d

BPS Git Server git at git.bestpractical.com
Thu Jul 21 15:48:17 UTC 2022


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "rt".

The branch, 5.0/docker-testing-buster has been updated
       via  427043099de9160401c5943cce28e55ddb3733b5 (commit)
       via  5ef462d849e8b90fd58a2cbd504c6bbbc3123479 (commit)
       via  c752827ee5749e75b33c04327aeb2b088e5ecea8 (commit)
      from  652ed3ba8055af6a41ba0f65995c14a55e41df9e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 427043099de9160401c5943cce28e55ddb3733b5
Author: Jim Brandt <jbrandt at bestpractical.com>
Date:   Thu Jul 21 11:47:54 2022 -0400

    Test against a supported Postgresql version

diff --git a/.github/workflows/github-action.yml b/.github/workflows/github-action.yml
index b599b2e51f..9545b2c777 100644
--- a/.github/workflows/github-action.yml
+++ b/.github/workflows/github-action.yml
@@ -123,7 +123,7 @@ jobs:
         uses: actions/checkout at v2
       - name: Build RT
         env:
-          DB_VERSION_TAG: 9.6
+          DB_VERSION_TAG: 12.8
           RT_TEST_PARALLEL: 1
           RT_TEST_WEB_HANDLER: apache+fcgid
           HTTPD_ROOT: /etc/apache2
@@ -139,7 +139,7 @@ jobs:
           docker exec -e USER=rt-user -u rt-user rt bash -c "cd /rt && ./configure.ac --with-db-type=Pg --with-my-user-group --enable-layout=inplace --with-web-handler=fcgid --enable-developer --enable-externalauth --enable-gpg --enable-smime && mkdir -p /rt/var && make testdeps && chmod a+rX /rt/sbin/*"
       - name: Run RT tests
         env:
-          DB_VERSION_TAG: 9.6
+          DB_VERSION_TAG: 12.8
           RT_TEST_PARALLEL: 1
           RT_TEST_WEB_HANDLER: apache+fcgid
           HTTPD_ROOT: /etc/apache2
@@ -170,5 +170,5 @@ jobs:
           failure_text: '${env.RT_BRANCH_NAME} (${env.GITHUB_RUN_NUMBER}) tests failed in ${env.RT_GA_TEST_TIME}'
           cancelled_text: '${env.RT_BRANCH_NAME} (${env.GITHUB_RUN_NUMBER}) tests cancelled in ${env.RT_GA_TEST_TIME}'
           fields: |
-            [{ "title": "Configuration", "value": "Apache mod_fcgid, PostgreSQL 9.6", "short": true },
+            [{ "title": "Configuration", "value": "Apache mod_fcgid, PostgreSQL 12.8", "short": true },
             { "title": "URL", "value": "${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}?check_suite_focus=true", "short": true }]

commit 5ef462d849e8b90fd58a2cbd504c6bbbc3123479
Author: Jim Brandt <jbrandt at bestpractical.com>
Date:   Thu Jul 21 11:34:30 2022 -0400

    Test MariaDB current long term support version
    
    10.6 is supported until 2026, see:
    
    https://mariadb.com/kb/en/mariadb-server-release-dates/

diff --git a/.github/workflows/github-action.yml b/.github/workflows/github-action.yml
index 274fa8fc6c..b599b2e51f 100644
--- a/.github/workflows/github-action.yml
+++ b/.github/workflows/github-action.yml
@@ -70,7 +70,7 @@ jobs:
           RT_TEST_PARALLEL: 1
           RT_DBA_USER: root
           RT_DBA_PASSWORD: password
-          DB_VERSION_TAG: 10.3
+          DB_VERSION_TAG: 10.6
         shell: bash
         run: |
           docker run --name mariadb -e MYSQL_ROOT_PASSWORD=password -d mariadb:$DB_VERSION_TAG
@@ -83,7 +83,7 @@ jobs:
           RT_TEST_PARALLEL: 1
           RT_DBA_USER: root
           RT_DBA_PASSWORD: password
-          DB_VERSION_TAG: 10.3
+          DB_VERSION_TAG: 10.6
         shell: bash
         run: docker exec -e RT_TEST_PARALLEL=1 -e RT_DBA_USER=root -e RT_DBA_PASSWORD=password rt bash -c "cd /rt && prove -rlj6 t/*"
       - name: Get run time
@@ -109,7 +109,7 @@ jobs:
           failure_text: '${env.RT_BRANCH_NAME} (${env.GITHUB_RUN_NUMBER}) tests failed in ${env.RT_GA_TEST_TIME}'
           cancelled_text: '${env.RT_BRANCH_NAME} (${env.GITHUB_RUN_NUMBER}) tests cancelled in ${env.RT_GA_TEST_TIME}'
           fields: |
-            [{ "title": "Configuration", "value": "RT Server, MariaDB 10.3", "short": true },
+            [{ "title": "Configuration", "value": "RT Server, MariaDB 10.6", "short": true },
             { "title": "URL", "value": "${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}?check_suite_focus=true", "short": true }]
   rt_test_postgresql_apache_mod_fcgid:
     runs-on: ubuntu-latest

commit c752827ee5749e75b33c04327aeb2b088e5ecea8
Author: Jim Brandt <jbrandt at bestpractical.com>
Date:   Thu Jul 21 11:33:24 2022 -0400

    Recurse into t directory to run all tests

diff --git a/.github/workflows/github-action.yml b/.github/workflows/github-action.yml
index f706368ad6..274fa8fc6c 100644
--- a/.github/workflows/github-action.yml
+++ b/.github/workflows/github-action.yml
@@ -29,7 +29,7 @@ jobs:
           docker exec rt bash -c "cd /rt && ./configure.ac --with-db-type=SQLite --with-my-user-group --enable-layout=inplace --enable-developer --enable-externalauth --enable-gpg --enable-smime && mkdir -p /rt/var && make testdeps"
       - name: Run RT tests
         shell: bash
-        run: docker exec -e RT_TEST_PARALLEL=1 rt bash -c "cd /rt && prove -lj6 t/*"
+        run: docker exec -e RT_TEST_PARALLEL=1 rt bash -c "cd /rt && prove -rlj6 t/*"
       - name: Get run time
         shell: bash
         run: |
@@ -85,7 +85,7 @@ jobs:
           RT_DBA_PASSWORD: password
           DB_VERSION_TAG: 10.3
         shell: bash
-        run: docker exec -e RT_TEST_PARALLEL=1 -e RT_DBA_USER=root -e RT_DBA_PASSWORD=password rt bash -c "cd /rt && prove -lj6 t/*"
+        run: docker exec -e RT_TEST_PARALLEL=1 -e RT_DBA_USER=root -e RT_DBA_PASSWORD=password rt bash -c "cd /rt && prove -rlj6 t/*"
       - name: Get run time
         shell: bash
         run: |
@@ -146,7 +146,7 @@ jobs:
           RT_TEST_APACHE: /usr/sbin/apache2
           RT_TEST_APACHE_MODULES: /usr/lib/apache2/modules
         shell: bash
-        run: docker exec -e RT_TEST_PARALLEL=1 -e RT_DBA_USER=postgres -e RT_DBA_PASSWORD=password -u rt-user rt bash -c "cd /rt && prove -lj6 t/*"
+        run: docker exec -e RT_TEST_PARALLEL=1 -e RT_DBA_USER=postgres -e RT_DBA_PASSWORD=password -u rt-user rt bash -c "cd /rt && prove -rlj6 t/*"
       - name: Get run time
         shell: bash
         run: |

-----------------------------------------------------------------------

Summary of changes:
 .github/workflows/github-action.yml | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
rt


More information about the rt-commit mailing list