Add support for running a custom init (including systemd) #311
Workflow file for this run
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
| name: Code Quality | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| create: | |
| jobs: | |
| build: | |
| if: github.event_name == 'pull_request' | |
| name: Code Quality (clippy, rustfmt) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| rust: | |
| - stable | |
| target: | |
| - x86_64-unknown-linux-gnu | |
| steps: | |
| - name: Code checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Rust toolchain (${{ matrix.rust }}) | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: ${{ matrix.rust }} | |
| target: ${{ matrix.target }} | |
| override: true | |
| components: rustfmt, clippy | |
| - name: Install packages | |
| run: sudo apt-get update && sudo apt-get -y install libclang-dev libudev-dev | |
| - name: Download libkrun.h | |
| run: sudo curl -o /usr/include/libkrun.h https://raw.githubusercontent.com/containers/libkrun/refs/heads/main/include/libkrun.h | |
| - name: Download libkrun.pc | |
| run: sudo curl -o /usr/lib/x86_64-linux-gnu/pkgconfig/libkrun.pc https://gist.githubusercontent.com/slp/b5761d225d96d2c8879392a7b1611aee/raw/79b81aaabc34648d27916f4abcf7502d98915c50/libkrun-ubuntu.pc | |
| - name: Formatting (rustfmt) | |
| run: cargo fmt -- --check | |
| - name: Clippy (all features) | |
| run: cargo clippy --all-targets --all-features -- -D warnings |