Skip to content

Commit

Permalink
Update sysgen.yml
Browse files Browse the repository at this point in the history
made sysgen run until it completes a successful build instead of failing silently. It will build... eventually.
  • Loading branch information
mainframed authored Apr 12, 2022
1 parent feee69f commit d2643c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/sysgen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Running sysgen.py
id: sysgen
working-directory: /mvsce
run: ./sysgen.py --release --version ${GITHUB_SHA} --timeout 600
run: until ./sysgen.py --timeout 500 --version ${GITHUB_SHA}; do echo "Failed, rerunning"; done

- name: Printing Debug Log
if: ${{ always() && (steps.sysgen.outcome == 'failure') }}
Expand Down

0 comments on commit d2643c1

Please sign in to comment.