Open
Conversation
### Summary This PR adds GitHub Actions CI support for the Unikraft library package: `dragonfly:1.14`. Each workflow includes: ✅ **run-local**: Builds and runs the unikernel locally via QEMU ✅ **build**: Matrix builds for QEMU and Firecracker (x86_64)⚠️ **push**: Prepares OCI images for publishing (requires registry credentials) 🕒 **schedule**: Runs the workflow daily via cron Test logic performs functional checks such as: - Compiling the unikernel with `kraft build` - Booting the unikernel locally with `kraft run` - Verifying that the instance starts successfully - Archiving OCI digests for registry upload This setup improves test coverage and CI reliability by ensuring that: - `dragonfly:1.14` builds cleanly for both platforms - Local unikernel execution is validated - Future remote registry pushes are ready once secrets are set ### Note⚠️ The `push` step requires `REG_USERNAME` and `REG_TOKEN` secrets to be configured in the repository in order to push OCI images to `index.unikraft.io`. Only local tests were verified during development. --- ### Checklist - [x] Read the contribution guidelines: https://unikraft.org/docs/contributing/unikraft - [x] Test run-local (QEMU) for the `dragonfly:1.14` library - [x] Validate push step with OCI secrets configured - [x] Add Signed-off-by to commits (`git commit -s`) - [x] Check for trailing whitespaces and ensure newline at EOF Signed-off-by: Vulpoi Maria-Diana <151461331+dianav18@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds GitHub Actions CI support for the Unikraft library package:
imaginary:1.2.Each workflow includes:
✅ run-local: Builds and runs the unikernel locally via QEMU
⚠️ push: Prepares OCI images for publishing (requires registry credentials)
✅ build: Matrix builds for QEMU and Firecracker (x86_64)
🕒 schedule: Runs the workflow daily via cron
Test logic performs functional checks such as:
kraft buildkraft runThis setup improves test coverage and CI reliability by ensuring that:
imaginary:1.2builds cleanly for both platformsNote
pushstep requiresREG_USERNAMEandREG_TOKENsecretsto be configured in the repository in order to push OCI images to
index.unikraft.io.Only local tests were verified during development.
Checklist
imaginary:1.2librarygit commit -s)