[Rt-commit] rt branch 5.0/github-actions-bugfixes updated. rt-5.0.1-617-g9cb30e48c6

BPS Git Server git at git.bestpractical.com
Mon Aug 23 18:54:32 UTC 2021


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/github-actions-bugfixes has been updated
       via  9cb30e48c670c6bd8c14758aca491605863b94e5 (commit)
      from  305c30cc2938745268ed3cbee2d328b25f86a372 (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 9cb30e48c670c6bd8c14758aca491605863b94e5
Author: Brett Smith <brett at bestpractical.com>
Date:   Mon Aug 23 14:53:12 2021 -0400

    Fix MariaDB netmask syntax
    
    They require the more verbose /255.240.0.0 spelling, not /12.

diff --git a/.github/workflows/github-action.yml b/.github/workflows/github-action.yml
index 26ca93469f..bf7ba00b46 100644
--- a/.github/workflows/github-action.yml
+++ b/.github/workflows/github-action.yml
@@ -66,8 +66,8 @@ jobs:
           docker network create rt
           docker run --network rt --name mariadb -e MYSQL_ROOT_PASSWORD=password -d mariadb:10.3
           docker build --network rt -t rt-base .
-          docker run -d -v $GITHUB_WORKSPACE:/rt --env RT_TEST_DB_HOST=mariadb --env RT_TEST_RT_HOST=172.16.0.0/12 --network rt --name rt rt-base
-          docker exec rt bash -c 'cd /rt && ./configure.ac --with-db-type=mysql --with-db-host=mariadb --with-db-rt-host=172.16.0.0/12 --with-my-user-group --enable-layout=inplace --enable-developer --enable-externalauth --enable-gpg --enable-smime && mkdir -p /rt/var && make testdeps'
+          docker run -d -v $GITHUB_WORKSPACE:/rt --env RT_TEST_DB_HOST=mariadb --env RT_TEST_RT_HOST=172.16.0.0/255.240.0.0 --network rt --name rt rt-base
+          docker exec rt bash -c 'cd /rt && ./configure.ac --with-db-type=mysql --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 rt bash -c "cd /rt && prove -lj6 t/*"

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

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


hooks/post-receive
-- 
rt


More information about the rt-commit mailing list