[Rt-commit] rt branch, 4.4/github-actions-testing, updated. rt-4.4.4-217-g4fad29adbf
Dianne Skoll
dianne at bestpractical.com
Tue Jan 26 09:56:06 EST 2021
The branch, 4.4/github-actions-testing has been updated
via 4fad29adbf40e18e51886ebfa57396f94f348f7b (commit)
from 2e2b9adfc8ec22fd2ea679f4f3da7200651213b2 (commit)
Summary of changes:
.github/workflows/github-action.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
- Log -----------------------------------------------------------------
commit 4fad29adbf40e18e51886ebfa57396f94f348f7b
Author: Dianne Skoll <dianne at bestpractical.com>
Date: Tue Jan 26 09:55:53 2021 -0500
We don't have a TTY; remove -it flags from docker command
diff --git a/.github/workflows/github-action.yml b/.github/workflows/github-action.yml
index 02d54ce568..0528403b27 100644
--- a/.github/workflows/github-action.yml
+++ b/.github/workflows/github-action.yml
@@ -21,7 +21,7 @@ jobs:
docker build -t rt-base .
docker run -d -v $GITHUB_WORKSPACE:/rt --name rt --link mariadb:db rt-base
docker ps -a
- docker exec -it 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"
+ 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"
build:
runs-on: ubuntu-latest
@@ -34,4 +34,4 @@ jobs:
RT_DBA_PASSWORD: password
DB_VERSION_TAG: 10.3
shell: bash
- run: docker exec -it rt bash -c "cd /rt && prove -lj9 t/*"
+ run: docker exec rt bash -c "cd /rt && prove -lj9 t/*"
-----------------------------------------------------------------------
More information about the rt-commit
mailing list