https://github.com/kwk/llvm_snapshot_builder
Builds LLVM Snapshots on Copr
https://github.com/kwk/llvm_snapshot_builder
copr fedora llvm snapshots
Last synced: 4 months ago
JSON representation
Builds LLVM Snapshots on Copr
- Host: GitHub
- URL: https://github.com/kwk/llvm_snapshot_builder
- Owner: kwk
- License: mit
- Archived: true
- Created: 2022-10-09T08:54:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-23T17:56:32.000Z (over 2 years ago)
- Last Synced: 2024-09-07T20:16:54.688Z (9 months ago)
- Topics: copr, fedora, llvm, snapshots
- Language: Python
- Homepage: https://pypi.org/project/llvm-snapshot-builder/
- Size: 366 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# DEPRECATION NOTICE
THIS PROJECT IS DEPRECATED BECAUSE WE NO LONGER NEED A WRAPPER AROUND COPR. WE RUN THE COPR CLI MANUALLY FROM A FEDORA CONTAINER NOW (https://github.com/kwk/llvm-daily-fedora-rpms):
```yaml
jobs:
build-on-copr:
runs-on: ubuntu-latest
container: fedora:37
steps:
- name: Install Copr CLI
run: |
dnf install -y copr-cli
```A good use of this project is to see how the poetry setup was arranged and how the pypi releases work there. Also the Python Multiple Inheritance stuff been done here is really nice to write and compose but it is hard to maintain.
-----
# llvm_snapshot_builder
Builds LLVM snapshots on Copr
## Status
[](https://llvm_snapshot_builder.readthedocs.io/en/latest/?badge=latest)
[](https://github.com/kwk/llvm_snapshot_builder/actions/workflows/codeql.yml)
[](https://github.com/kwk/llvm_snapshot_builder/actions/workflows/ci-cd.yml)
[](https://codecov.io/gh/kwk/llvm_snapshot_builder)
[](https://github.com/kwk/llvm_snapshot_builder/releases)## Installation
```bash
$ pip install llvm_snapshot_builder
```## Usage
For a more in-depth example, take a look at [the example in the documentation](https://llvm_snapshot_builder.readthedocs.io/en/latest/example.html).
After installing you can explore the CLI program with:
```bash
$ python -m llvm_snapshot_builder.cli --help
```or with:
```console
$ llvm_sb --help
```## Contributing
Interested in contributing? Check out the contributing guidelines. Please note that this project is released with a Code of Conduct. By contributing to this project, you agree to abide by its terms.
### Commit message conventions and semantic versioniong (semver)
We use semantic versioning and [these commit message conventions](https://www.conventionalcommits.org/en/v1.0.0/)
can be used to automatically bump the version number and generate the changelog.## License
`llvm_snapshot_builder` was created by Konrad Kleine . It is licensed under the terms of the MIT license.
## Credits
`llvm_snapshot_builder` was created with [`cookiecutter`](https://cookiecutter.readthedocs.io/en/latest/) and the `py-pkgs-cookiecutter` [template](https://github.com/py-pkgs/py-pkgs-cookiecutter).