Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "CI: Enable building of the images with and without initramfs" #650

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/build-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ env:
DISTRO: poky
TCLIBC: glibc musl
KERNELS: linaro-qcomlt yocto
INITRAMFS: initramfs-rootfs-image ~

jobs:
build:
Expand Down Expand Up @@ -70,20 +69,18 @@ jobs:

for tclibc in ${TCLIBC}; do
for kernel in ${KERNELS}; do
for initramfs in ${INITRAMFS}; do
cat << EOF >> plan.yaml
${tclibc}-${kernel}: &${tclibc}-${kernel}
local_conf:
- INHERIT += 'buildstats buildstats-summary'
- INHERIT:remove = 'rm_work'
- TCLIBC := '${tclibc}'
- PREFERRED_PROVIDER_virtual/kernel := 'linux-${kernel}'
- INITRAMFS_IMAGE := '${initramfs}'
- INITRAMFS_IMAGE ?= 'initramfs-rootfs-image'

EOF
done
done
done

cat << EOF >> plan.yaml
jobs:
Expand Down
Loading