lint issues

This commit is contained in:
robojerk 2025-09-09 18:19:00 -07:00
parent f8dbd22c4f
commit 16eac9a06f

View file

@ -6,7 +6,7 @@ on:
branches: [main, develop] branches: [main, develop]
pull_request: pull_request:
branches: [main] branches: [main]
workflow_dispatch: workflow_dispatch: true
env: env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
@ -155,33 +155,33 @@ jobs:
chmod +x debian/bootc-image-builder/usr/bin/bootc-image-builder chmod +x debian/bootc-image-builder/usr/bin/bootc-image-builder
# Create control file # Create control file
cat > debian/bootc-image-builder/DEBIAN/control << EOF {
Package: bootc-image-builder echo "Package: bootc-image-builder"
Version: $BUILD_VERSION echo "Version: $BUILD_VERSION"
Section: admin echo "Section: admin"
Priority: optional echo "Priority: optional"
Architecture: amd64 echo "Architecture: amd64"
Maintainer: CI Build <ci@particle-os.org> echo "Maintainer: CI Build <ci@particle-os.org>"
Depends: libc6 (>= 2.39), libgcc-s1 (>= 3.0), libssl3t64 (>= 3.0.0), echo "Depends: libc6 (>= 2.39), libgcc-s1 (>= 3.0), libssl3t64 (>= 3.0.0),"
libostree-1-1 (>= 2023.1), ostree (>= 2023.1), podman (>= 4.0), echo " libostree-1-1 (>= 2023.1), ostree (>= 2023.1), podman (>= 4.0),"
qemu-utils (>= 7.0), parted (>= 3.0), echo " qemu-utils (>= 7.0), parted (>= 3.0),"
grub-efi-amd64 (>= 2.0) | systemd-boot (>= 250), echo " grub-efi-amd64 (>= 2.0) | systemd-boot (>= 250),"
dracut (>= 055), composefs (>= 0.1), echo " dracut (>= 055), composefs (>= 0.1),"
zstd (>= 1.0), cpio (>= 2.0), tar (>= 1.0) echo " zstd (>= 1.0), cpio (>= 2.0), tar (>= 1.0)"
Description: Bootc container image to disk image converter echo "Description: Bootc container image to disk image converter"
Bootc-image-builder converts bootc container images into bootable disk images. echo " Bootc-image-builder converts bootc container images into bootable disk images."
. echo " ."
Features: echo " Features:"
- Multi-format support (QCOW2, Raw, VMDK, ISO, AMI) echo " - Multi-format support (QCOW2, Raw, VMDK, ISO, AMI)"
- Bootc container image support echo " - Bootc container image support"
- OSTree repository integration echo " - OSTree repository integration"
- Composefs support echo " - Composefs support"
- Initramfs creation with dracut echo " - Initramfs creation with dracut"
- GRUB and systemd-boot support echo " - GRUB and systemd-boot support"
- UEFI and BIOS boot modes echo " - UEFI and BIOS boot modes"
- Secure boot support echo " - Secure boot support"
- Cloud integration (AWS, Azure, GCP) echo " - Cloud integration (AWS, Azure, GCP)"
EOF } > debian/bootc-image-builder/DEBIAN/control
# Build package # Build package
dpkg-deb --build debian/bootc-image-builder "bootc-image-builder_${BUILD_VERSION}_amd64.deb" dpkg-deb --build debian/bootc-image-builder "bootc-image-builder_${BUILD_VERSION}_amd64.deb"