Skip to content

Commit

Permalink
Install YAML::Syck, add docker logs
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemhall committed May 27, 2021
1 parent c47c2c9 commit c854202
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ jobs:
cd ..
pwd
ls -alh
echo "`date`: Installing YAML::Syck, needed for Koha 20.11 and earlier"
docker exec koha_koha_1 apt-get install -y libyaml-syck-perl
while [ $? -ne 0 ]; do echo "INSTALL YAML::Syck" && docker exec koha_koha_1 apt-get install -y libyaml-syck-perl; done
echo "SLEEPING 3 MINUTES"
sleep 60
echo "1 MINUTE DONE"
Expand All @@ -107,6 +110,9 @@ jobs:
sleep 60
echo "3 MINUTES DONE"
echo "WAKING UP"
echo "DOCKER LOGS"
docker logs koha_koha_1 2>&1
echo "/DOCKER LOGS"
docker cp $GITHUB_REPO/. koha_koha_1:/var/lib/koha/kohadev/plugins
docker exec koha_koha_1 bash -c 'prove /var/lib/koha/kohadev/plugins/t'
Expand Down

0 comments on commit c854202

Please sign in to comment.