How to publish a slice definition¶
At this stage, you have created some package slice definitions and you have a custom Chisel release in your local development environment. You have also tested this custom Chisel release, and it works! You believe there are others who could really use it as well, so how can you make it accessible to everyone?
It is as simple as proposing your changes into the upstream Chisel releases repository:
Fork this repository https://github.com/canonical/chisel-releases and clone your fork:
# Let's assume we are working with Ubuntu 22.04
git clone -b ubuntu-22.04 https://github.com/<your_github_username>/chisel-releases.git
Create a branch:
cd chisel-releases
git checkout -b create-openssl-bins-slice
Add and commit your modifications:
cp <path/to/your/slice/definitions/file> slices
git add slices/
git commit -m "feat(22.04): add new slice definitions for 'package_name'"
git push origin create-openssl-bins-slice
4. Create integration tests to test your changes.
If applicable, add integration tests for your changes in
tests/spread/integration/<package_name>
. Those tests are composed of a
task.yaml
file (plus a few accompanying test scripts if needed) that
contains instructions on how to cut the slices you created or changed and test
their functionalities. You can find examples on how to write such tests in the
child folders of tests/spread/tests
.
Create a pull request and wait for it to be merged.
And that’s it! Your custom Chisel release and new slice definitions are now available in Chisel, and anyone can use them. Congrats! And thank you for your contribution.