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

Build CI on more realistic combinations (and faster) #3027

Conversation

undermyumbrella1
Copy link
Contributor

Fixes #2898

  • builds once
  • uploads build artifacts
  • other jobs/other java version will download this build artifact
  • then it will run compiled tests to check that they pass

Considerations:

  1. originally matrix jobs are used
  • but this mean other jobs will have to depend on all jobs in the matrix to complete
  • instead of a single job in the matrix to complete = slower
  • Therefore, reusable workflows is used instead
  • so each run will be a separate gh job
  1. Android job depends on build job's build artifacts
  • specifically Task :androidTest:bundleDebugClassesToRuntimeJar
  • is this expected behaviour or should android job be able to run successfully, independent of build job?

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

Successfully merging this pull request may close these issues.

Build CI on more realistic combinations (and faster)
1 participant