Skip to content

Commit

Permalink
Update build systems to use f41
Browse files Browse the repository at this point in the history
  • Loading branch information
sharpenedblade committed Oct 30, 2024
1 parent 47e59c7 commit cae048a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-iso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
docker run \
--privileged \
-v "$PWD":/repo \
ghcr.io/t2linux/fedora-ci:40 \
ghcr.io/t2linux/fedora-ci:41 \
/repo/build.sh
- name: Upload Artifact
Expand Down
8 changes: 4 additions & 4 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ trap cleanup EXIT

for ks in "${kickstarts[@]}"; do
ks_builddir="$builddir/$ks"; mkdir -p $ks_builddir; cd "$ks_builddir"
sudo ksflatten --config "/repo/$ks.ks" --output "$ks-flat.ks" --version F40
sudo ksflatten --config "/repo/$ks.ks" --output "$ks-flat.ks" --version F41
livemedia-creator \
--make-iso \
--iso-only \
--no-virt \
--resultdir results \
--releasever 40 \
--releasever 41 \
--ks "$ks-flat.ks" \
--project t2linux-Fedora-Live \
--volid t2linux-Fedora-Live-40 \
--iso-name "t2linux-$ks-40.iso"
--volid t2linux-Fedora-Live-41 \
--iso-name "t2linux-$ks-41.iso"
find results/*.iso -size +2G -exec sh -c "split -b 1999M -x {} {}. && rm {}" \;
mv results/* /repo/builddir/iso/
done
Expand Down

0 comments on commit cae048a

Please sign in to comment.