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
2 changes: 1 addition & 1 deletion .github/workflows/validate-brewfiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
echo "Validating Brewfiles..."


find "brew" -iname '*\.Brewfile*' -print0 | \
find "system_files/shared/usr/share/ublue-os/homebrew" -iname '*\.Brewfile*' -print0 | \
while IFS= read -r -d '' brewfile ; do \
echo "::group:: ===$(basename $brewfile)==="
grep -E -e "^tap" $brewfile > taps.Brewfile
Expand Down
14 changes: 1 addition & 13 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1 @@
*.iso
*.iso-CHECKSUM
flatpaks_with_deps
flatpak.*

*_build
*_build.*
previous.manifest.json
changelog.md
output.env
version.txt

devcontainer
dump
5 changes: 1 addition & 4 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,8 @@ RUN set -xeuo pipefail && \
rm -rf /wallpapers

FROM scratch AS ctx

COPY --from=ghcr.io/projectbluefin/common:latest /system_files/shared /system_files/shared
COPY --from=builder /output/ /wallpapers

COPY /brew /brew
COPY /flatpaks /flatpaks
COPY /just /just
COPY /logos /logos
COPY /system_files /system_files
14 changes: 13 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
just := just_executable()

# Not a buildsystem, only convenience commands

# Build the aurora-common container locally
build:
buildah build -t localhost/aurora-common:latest -f ./Containerfile .
podman build -t localhost/aurora-common:latest -f ./Containerfile .

# Check the syntax of all Justfiles in the repository
check:
Expand Down Expand Up @@ -34,3 +36,13 @@ tree IMAGE="localhost/aurora-common:latest":
podman run --rm tree-temp
rm TreeContainerfile
podman rmi tree-temp

dump IMAGE="localhost/aurora-common:latest":
#!/usr/bin/bash
set -euo pipefail

cid=$(podman create {{ IMAGE }})
echo "Created container $cid from {{ IMAGE }}"
mkdir -p dump
podman cp "$cid:/." dump/
podman rm "$cid"
14 changes: 0 additions & 14 deletions brew/aurora-ai.Brewfile

This file was deleted.

24 changes: 0 additions & 24 deletions brew/aurora-cli.Brewfile

This file was deleted.

15 changes: 0 additions & 15 deletions brew/aurora-fonts.Brewfile

This file was deleted.

16 changes: 0 additions & 16 deletions brew/aurora-k8s.Brewfile

This file was deleted.

Loading
Loading