[Rt-commit] rt branch 4.4/docker-testing-buster created. rt-4.4.6-17-g50fdca6beb

BPS Git Server git at git.bestpractical.com
Thu Jul 21 17:08:20 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, 4.4/docker-testing-buster has been created
        at  50fdca6beb25d0b81a4820f470a8a01d18e63620 (commit)

- Log -----------------------------------------------------------------
commit 50fdca6beb25d0b81a4820f470a8a01d18e63620
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 3de782d0e11302ed744223bb25ef650baff0a834
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 054ccabf4bdeadf1566e64b2851e6ed43ab5a7d4
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: |

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

    Pull from new buster image

diff --git a/Dockerfile b/Dockerfile
index e14f34877b..71c366656b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,6 @@
 # This Dockerfile is for testing only.
 
-FROM bpssysadmin/rt-base-debian-stretch
+FROM bpssysadmin/rt-base-debian:RT-5.0.3-buster-20220721
 
 ENV RT_TEST_PARALLEL 1
 ENV RT_TEST_DEVEL 1

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


hooks/post-receive
-- 
rt


More information about the rt-commit mailing list