Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run Action Builds in Parallel #59

Closed
shiftgeist opened this issue May 28, 2021 · 3 comments
Closed

Run Action Builds in Parallel #59

shiftgeist opened this issue May 28, 2021 · 3 comments

Comments

@shiftgeist
Copy link

shiftgeist commented May 28, 2021

It'd be great if the Debian build gets executed when the windows build fails. Sequential builds could also be interesting.

image
(from psst/actions/runs/885002673)


Edit:

Found this in the docs: Example not requiring dependent jobs to be successful

jobs:
  job1:
  job2:
    needs: job1
  job3:
    if: always()
    needs: [job1, job2]

needs may not apply, but if: always() sounds promissing.

https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-not-requiring-dependent-jobs-to-be-successful

@jpochyla
Copy link
Owner

I'm not sure how to use this for a matrix-triggered jobs :/

@jpochyla
Copy link
Owner

This seems to be the culprit: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast

@jpochyla
Copy link
Owner

Should be fixed by 11cec9d. There's another issue with the deb job not running if Windows or MacOS builds fail, not sure how to approach that one.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants