Skip to content

Files

Latest commit

7e81f29 · Aug 2, 2023

History

History

workflows

GitHub Actions CI Integration

GitHub Actions allow building Continuous Integration pipeline for testing purposes. GitHub Actions are visible through the Actions tab in a GitHub repository, are triggered automatically for each push or pull-request and run also in forks. For further information about GitHub Actions, see the official documentation.

Caching

The GitHub Action Cache allows reusing files between jobs and workflows. The content of the cache cannot be cleaned on purpose, but is cleaned when the hash of the files used for the key changes. This action is used in order to cache the maven dependencies.

Composite Steps

Unfortunately, at the moment it is not possible to reuse some steps on multiple jobs. This feature is a nice to have, since it would be possible to reuse the steps that are common to all the test jobs. The feature has been already requested by the community, and it's being discussed here:

The GitHub Actions dev team has already introduced the composite run steps, see:

However, composite 'actions' are not supported yet, see:

Re-run single jobs

It is currently not possible to restart single jobs. For more information see the following issues on GitHub Actions Community that are tracking this feature request:

To cope with this missing feature, the Retry GitHub Action is used. This action allows retrying a failed step for a fixed amount of attempts.