Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bestpractical/rt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Brandt <jbrandt@bestpractical.com>2022-07-21 18:34:30 +0300
committerJim Brandt <jbrandt@bestpractical.com>2022-07-21 20:07:52 +0300
commit3de782d0e11302ed744223bb25ef650baff0a834 (patch)
treee09243164b734bc736be3e87bcef1143bc04ec4f
parent054ccabf4bdeadf1566e64b2851e6ed43ab5a7d4 (diff)
Test MariaDB current long term support version
10.6 is supported until 2026, see: https://mariadb.com/kb/en/mariadb-server-release-dates/
-rw-r--r--.github/workflows/github-action.yml6
1 files changed, 3 insertions, 3 deletions
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