Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sel4/ci-actions
CI GitHub actions for the seL4 repositories
https://github.com/sel4/ci-actions
ci ci-actions continuous-integration sel4
Last synced: about 1 month ago
JSON representation
CI GitHub actions for the seL4 repositories
- Host: GitHub
- URL: https://github.com/sel4/ci-actions
- Owner: seL4
- Created: 2020-06-11T03:38:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-27T12:18:10.000Z (4 months ago)
- Last Synced: 2024-08-27T13:38:35.752Z (4 months ago)
- Topics: ci, ci-actions, continuous-integration, sel4
- Language: Python
- Homepage: https://sel4.systems
- Size: 17.7 MB
- Stars: 3
- Watchers: 20
- Forks: 13
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSES/BSD-2-Clause.txt
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
[![CI](https://github.com/seL4/ci-actions/actions/workflows/push.yml/badge.svg)](https://github.com/seL4/ci-actions/actions/workflows/push.yml)
# CI actions and Workflows for seL4 repositories
This repository collects definitions for continuous integration (CI)
tasks/actions for the repositories of the seL4 foundation. While some of these
might be useful more generally, most of them will be specific to the seL4 setup.The idea is to concentrate most of the GitHub workflow definitions here in a
single repository to avoid duplication, share code between actions, and to make
it easier to replicate a similar CI setup on other platforms.Shared JavaScript is in [`js/`](js/), and shared shell scripts are in [`scripts/`](scripts/)
This repository also defines a number of GitHub action workflows that can be
called from other repositories. These are all files in `.github/workflows` that
define an `on: workflow_call` trigger. In particular:- [pr.yml](.github/workflows/pr.yml) for standard pull requests checks (gitlint,
whitespace, shell checks, style)
- [push.yml](.github/workflows/push.yml) for standard push checks (links, licenses)
- [sel4test-sim.yml](.github/workflows/sel4test-sim.yml) for running the
seL4 simulation tests
- [sel4test-hw.yml](.github/workflows/sel4test-hw.yml) for running the
seL4 hardware tests
- [sel4bench-hw.yml](.github/workflows/sel4bench-hw.yml) for running the
seL4 hardware benchmarks## Availabe actions
The following GitHub actions are available:
- [Style](style/)
- [Gitlint](gitlint/)
- [`git diff --check`](git-diff-check/)
- [License Check](license-check/)
- [Link Check](link-check/)
- [Portable Shell Script](bashisms/) check
- [Preprocess](preprocess/) the seL4 source to check for changes to verified configurations.
- [Run Proofs](run-proofs/): check if the proofs still work after a code change.
- [Kernel Compile](standalone-kernel/): standalone seL4 kernel compilation for different compiler/arch/python combinations.## Contributing
Contributions are welcome!
See [open issues][issues] for things than need work, there is also a list of
[good first issues][first-issues] if you are new to all this and want to get
involved.See the file [CONTRIBUTING.md](CONTRIBUTING.md) for more information.
[issues]: https://github.com/seL4/ci-actions/issues?q=is%3Aopen+is%3Aissue+no%3Aassignee
[first-issues]: https://github.com/seL4/ci-actions/issues?q=is%3Aopen+is%3Aissue+no%3Aassignee+label%3A%22good+first+issue%22## License
See the directory [LICENSES/](LICENSES/) for a list of the licenses used in this
repository, and the SPDX tag in file headers for the license of each file.