diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-09-25 22:13:56 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-10-30 15:23:42 -0400 |
commit | 7ad36a21644a1eadfc449a56f4756b9c1fa56f88 (patch) | |
tree | a4ad896ab5771436c418510a42dc5fbaeccfc18c /scripts/travis-install.sh | |
parent | 21ba8a9d7a7a4721a77f741b4e75a7806b0d67e1 (diff) | |
download | kutter-7ad36a21644a1eadfc449a56f4756b9c1fa56f88.tar.gz kutter-7ad36a21644a1eadfc449a56f4756b9c1fa56f88.tar.xz kutter-7ad36a21644a1eadfc449a56f4756b9c1fa56f88.zip |
github: Run continuous integration tests using "github actions"
Use "github actions" instead of "travis ci" for the automatic build
regression tests.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts/travis-install.sh')
-rwxr-xr-x | scripts/travis-install.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/travis-install.sh b/scripts/travis-install.sh index b0192e7c..d0f42c41 100755 --- a/scripts/travis-install.sh +++ b/scripts/travis-install.sh @@ -43,7 +43,9 @@ PRU_DIR=${BUILD_DIR}/pru-gcc if [ ! -f ${PRU_FILE} ]; then cd ${BUILD_DIR} - git clone https://github.com/dinuxbg/gnupru -b 2018.03-beta-rc3 + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + git clone https://github.com/dinuxbg/gnupru -b 2018.03-beta-rc3 --depth 1 cd gnupru export PREFIX=${PRU_DIR} ./download-and-patch.sh 2>&1 | pv -nli 30 > ${BUILD_DIR}/gnupru-build.log |