-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle non-signed UKI build, rekres. Signed-off-by: Andrey Smirnov <[email protected]>
- Loading branch information
Showing
12 changed files
with
170 additions
and
104 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"description": "THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.", | ||
"prHeader": "Update Request | Renovate Bot", | ||
"extends": [ | ||
":dependencyDashboard", | ||
":gitSignOff", | ||
":semanticCommitScopeDisabled", | ||
"schedule:earlyMondays" | ||
], | ||
"packageRules": [ | ||
{ | ||
"groupName": "dependencies", | ||
"matchUpdateTypes": [ | ||
"major", | ||
"minor", | ||
"patch", | ||
"pin", | ||
"digest" | ||
] | ||
}, | ||
{ | ||
"enabled": false, | ||
"matchFileNames": [ | ||
"Dockerfile" | ||
] | ||
}, | ||
{ | ||
"enabled": false, | ||
"matchFileNames": [ | ||
".github/workflows/*.yaml" | ||
] | ||
} | ||
], | ||
"separateMajorMinor": false | ||
} |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
# syntax = docker/dockerfile-upstream:1.11.1-labs | ||
# syntax = docker/dockerfile-upstream:1.12.1-labs | ||
|
||
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. | ||
# | ||
# Generated on 2024-12-02T10:58:17Z by kres 232fe63. | ||
# Generated on 2025-01-16T11:42:04Z by kres 3b3f992. | ||
|
||
ARG TOOLCHAIN | ||
|
||
FROM alpine:3.20.3 AS base-image-image-factory | ||
|
||
# runs markdownlint | ||
FROM docker.io/oven/bun:1.1.36-alpine AS lint-markdown | ||
FROM docker.io/oven/bun:1.1.43-alpine AS lint-markdown | ||
WORKDIR /src | ||
RUN bun i [email protected] sentences-per-line@0.2.1 | ||
RUN bun i [email protected] sentences-per-line@0.3.0 | ||
COPY .markdownlint.json . | ||
COPY ./CHANGELOG.md ./CHANGELOG.md | ||
COPY ./README.md ./README.md | ||
RUN bunx markdownlint --ignore "CHANGELOG.md" --ignore "**/node_modules/**" --ignore '**/hack/chglog/**' --rules node_modules/sentences-per-line/index.js . | ||
RUN bunx markdownlint --ignore "CHANGELOG.md" --ignore "**/node_modules/**" --ignore '**/hack/chglog/**' --rules sentences-per-line . | ||
|
||
# Installs tailwindcss | ||
FROM docker.io/node:21.7.3-alpine3.19 AS tailwind-base | ||
|
@@ -167,7 +167,7 @@ COPY --from=image-factory-linux-amd64 / / | |
COPY --from=image-factory-linux-arm64 / / | ||
|
||
FROM base-image-image-factory AS image-image-factory | ||
RUN apk add --no-cache --update bash binutils-aarch64 binutils-x86_64 cpio dosfstools e2fsprogs efibootmgr kmod mtools pigz qemu-img squashfs-tools tar util-linux xfsprogs xorriso xz zstd | ||
RUN apk add --no-cache --update bash cpio dosfstools e2fsprogs efibootmgr kmod mtools pigz qemu-img squashfs-tools tar util-linux xfsprogs xorriso xz zstd | ||
ARG TARGETARCH | ||
COPY --from=image-factory image-factory-linux-${TARGETARCH} /image-factory | ||
COPY --from=ghcr.io/siderolabs/grub:v1.9.0 / / | ||
|
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.