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/container-build-and-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
source_dir="${GITHUB_WORKSPACE}/.github/dummy-package"
output_root="${GITHUB_WORKSPACE}/build/dummy-package"

for distro in noble resolute trixie sid; do
for distro in noble resolute trixie; do
output_dir="${output_root}/${distro}"
mkdir -p "${output_dir}"
echo "Testing image '${distro}' with docker_deb_build.py"
Expand Down Expand Up @@ -78,7 +78,6 @@ jobs:

# DEBIAN IMAGES
docker push ghcr.io/${{env.QCOM_ORG_NAME}}/${{env.IMAGE_NAME}}:trixie
docker push ghcr.io/${{env.QCOM_ORG_NAME}}/${{env.IMAGE_NAME}}:sid

build-rpm-arm64:
runs-on: ubuntu-24.04-arm
Expand Down
2 changes: 1 addition & 1 deletion docker_deb_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
DOCKER_IMAGE_NAME_FMT = "ghcr.io/qualcomm-linux/pkg-builder:{suite_name}"

# Distros excluded from automatic rebuild (e.g. temporarily broken upstream)
SKIP_REBUILD_DISTROS = {"questing"}
SKIP_REBUILD_DISTROS = {"questing", "sid"}

def _discover_available_distros() -> list:
"""
Expand Down
Loading