Skip to content

Commit

Permalink
github actions: add timeout to prepare commands
Browse files Browse the repository at this point in the history
  • Loading branch information
sni committed Oct 13, 2024
1 parent 4cb7041 commit 14e108f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/citest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
#- name: Setup tmate session, see https://github.com/marketplace/actions/debugging-with-tmate
# uses: mxschmitt/action-tmate@v3
- name: ./.ci/prepare_machine.sh
run: sudo ./.ci/prepare_machine.sh
run: timeout -v 15m sudo bash -x ./.ci/prepare_machine.sh
- name: ./.ci/install_deps.sh
run: sudo su naemon -c ./.ci/install_deps.sh
run: timeout -v 15m sudo su naemon -c 'bash -x ./.ci/install_deps.sh'
- name: ./script/install_puppeteer.sh
run: sudo ./script/install_puppeteer.sh
run: timeout -v 15m sudo bash -x ./script/install_puppeteer.sh
- name: make citest
run: sudo su naemon -c 'eval $(perl -I ~/perl5/lib/perl5/ -Mlocal::lib) && make citest'
run: timeout -v 90m sudo su naemon -c 'eval $(perl -I ~/perl5/lib/perl5/ -Mlocal::lib) && make citest'

0 comments on commit 14e108f

Please sign in to comment.