Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 1 addition & 2 deletions .github/workflows/build-image-gts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ on:
paths-ignore:
- ".github/workflows/*iso*"
- "**.md"
- "bluefin_flatpaks/**"
- "dx_flatpaks/**"
- "flatpaks/**"
- "iso_files/**"
schedule:
- cron: "50 5 * * 0" # 5:50 UTC Weekly on Sundays
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/build-image-latest-hwe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ on:
paths-ignore:
- ".github/workflows/*iso*"
- "**.md"
- "bluefin_flatpaks/**"
- "dx_flatpaks/**"
- "flatpaks/**"
- "iso_files/**"
workflow_call:
workflow_dispatch:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/build-image-latest-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ on:
paths-ignore:
- '.github/workflows/*iso*'
- '**.md'
- 'bluefin_flatpaks/**'
- 'dx_flatpaks/**'
- 'flatpaks/**'
- 'iso_files/**'
workflow_call:
workflow_dispatch:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/build-image-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ on:
paths-ignore:
- ".github/workflows/*iso*"
- "**.md"
- "bluefin_flatpaks/**"
- "dx_flatpaks/**"
- "flatpaks/**"
- "iso_files/**"
schedule:
- cron: "50 5 * * 0" # 5:50 UTC sunday
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build-iso-anaconda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
uses: ublue-os/titanoboa@main
with:
image-ref: ${{ steps.image_ref.outputs.image_ref }}:${{ matrix.image_version }}
flatpaks-list: ${{ github.workspace }}/iso_files/system-flatpaks.list
flatpaks-list: ${{ github.workspace }}/flatpaks/system-flatpaks.list
hook-post-rootfs: ${{ github.workspace }}/iso_files/configure_iso_anaconda.sh
kargs: ${{ steps.image_ref.outputs.kargs }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build-iso-readymade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
uses: ublue-os/titanoboa@main
with:
image-ref: ${{ steps.image_ref.outputs.image_ref }}:${{ matrix.image_version }}
flatpaks-list: ${{ github.workspace }}/iso_files/system-flatpaks.list
flatpaks-list: ${{ github.workspace }}/flatpaks/system-flatpaks.list
hook-post-rootfs: ${{ github.workspace }}/iso_files/configure_iso.sh
kargs: ${{ steps.image_ref.outputs.kargs }}

Expand Down
1 change: 1 addition & 0 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ FROM scratch AS ctx
COPY /system_files /system_files
COPY /build_files /build_files
COPY /iso_files /iso_files
COPY /flatpaks /flatpaks
COPY /just /just
COPY packages.json /

Expand Down
6 changes: 3 additions & 3 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -519,20 +519,20 @@ build-iso $image="bluefin" $tag="latest" $flavor="main" ghcr="0" pipeline="0":
rm -rf "${COPYTMP}"
fi

FLATPAK_DIR_SHORTNAME="bluefin_flatpaks"
FLATPAK_DIR_SHORTNAME="flatpaks"

# Generate Flatpak List
TEMP_FLATPAK_INSTALL_DIR="$(mktemp -d -p /tmp flatpak-XXXXX)"
flatpak_refs=()
while IFS= read -r line; do
flatpak_refs+=("$line")
done < "${FLATPAK_DIR_SHORTNAME}/flatpaks"
done < "${FLATPAK_DIR_SHORTNAME}/system-flatpaks.list"

# Add DX Flatpaks if needed
if [[ "${image_name}" =~ dx ]]; then
while IFS= read -r line; do
flatpak_refs+=("$line")
done < "dx_flatpaks/flatpaks"
done < "flatpaks/system-flatpaks-dx.list"
fi

echo "Flatpak refs: ${flatpak_refs[@]}"
Expand Down
2 changes: 1 addition & 1 deletion build_files/shared/build-base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ echo "::endgroup::"
echo "::group:: Copy Files"

# Copy ISO list for `install-system-flaptaks`
install -Dm0644 -t /etc/ublue-os/ /ctx/iso_files/*.list
install -Dm0644 -t /etc/ublue-os/ /ctx/flatpaks/*.list

# Copy Files to Container
cp -r /ctx/just /tmp/just
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 0 additions & 4 deletions iso_files/system-flatpaks-dx.list

This file was deleted.

34 changes: 0 additions & 34 deletions iso_files/system-flatpaks.list

This file was deleted.

Loading