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
64 changes: 0 additions & 64 deletions .github/actions/build_container/action.yml

This file was deleted.

7 changes: 4 additions & 3 deletions .github/workflows/qcom-build-pkg-reusable-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ on:
required: true

debian-ref:
description: The debian ref to build. For example branch "debian/latest" or tag "debian/1.0.0-1"
description: The debian ref to build. For example branch "debian/qcom-next" or tag "debian/1.0.0-1"
type: string
required: true
default: debian/latest
default: debian/qcom-next

distro-codename:
description: The distribution codename to build for. Ex noble, jammy, etc
Expand All @@ -34,7 +34,7 @@ on:
default: false

is-post-merge:
description: true if this build has been triggered by a merge into debian/latest. Will ensure PR branch is deleted
description: true if this build has been triggered by a merge into debian/qcom-next. Will ensure PR branch is deleted
type: boolean
default: false

Expand Down Expand Up @@ -65,6 +65,7 @@ jobs:
shell: bash

container:
# This docker image is built and published by the qualcomm-linux/docker_deb_build repo CI workflow
image: ghcr.io/qualcomm-linux/pkg-builder:${{inputs.runner == 'ubuntu-latest' && 'amd64' || 'arm64'}}-${{inputs.distro-codename}}
options: --privileged
credentials:
Expand Down
74 changes: 0 additions & 74 deletions .github/workflows/qcom-container-build-and-upload.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
shell: bash

container:
# This docker image is built and published by the qualcomm-linux/docker_deb_build repo CI workflow
image: ghcr.io/qualcomm-linux/pkg-builder:amd64-noble
credentials:
username: ${{ vars.DEB_PKG_BOT_CI_USERNAME }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/qcom-release-reusable-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ jobs:
shell: bash

container:
# This docker image is built and published by the qualcomm-linux/docker_deb_build repo CI workflow
image: ghcr.io/qualcomm-linux/pkg-builder:${{inputs.runner == 'ubuntu-latest' && 'amd64' || 'arm64'}}-${{inputs.distro-codename}}
options: --privileged
credentials:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ jobs:
shell: bash

container:
# This docker image is built and published by the qualcomm-linux/docker_deb_build repo CI workflow
image: ghcr.io/qualcomm-linux/pkg-builder:${{inputs.runner == 'ubuntu-latest' && 'amd64' || 'arm64'}}-${{inputs.distro-codename}}
options: --privileged
credentials:
Expand Down Expand Up @@ -125,15 +126,15 @@ jobs:
git remote add upstream-source ../upstream-repo
git fetch upstream-source "+refs/tags/*:refs/tags/*"

- name: Merge Upstream PR Changes to Packaging Repo on top of debian/latest
- name: Merge Upstream PR Changes to Packaging Repo on top of debian/qcom-next
run: |
cd ./package-repo

git config user.name "${{vars.DEB_PKG_BOT_CI_NAME}}"
git config user.email "${{vars.DEB_PKG_BOT_CI_EMAIL}}"

git checkout upstream/latest
git checkout debian/latest
git checkout debian/qcom-next
git checkout -b debian/upstream-pr

version=$(dpkg-parsechangelog --show-field Version)
Expand All @@ -148,9 +149,9 @@ jobs:
echo "upstream_version=$upstream_version" >> $GITHUB_ENV
echo "distro_revision=$distro_revision" >> $GITHUB_ENV

# Run gbp with --no-merge, this is because we do not want gbp to perform the final merging of upstream/latest into debian/latest
# Run gbp with --no-merge, this is because we do not want gbp to perform the final merging of upstream/latest into debian/qcom-next
# This because in upstream/latest, the top commit is the one of the filtering of git, github and debian folder. gbp will complain
# the merge is unseccessful because we want to merge with debian/latest, which has a workflow in .github, resulting in a merge conflict
# the merge is unseccessful because we want to merge with debian/qcom-next, which has a workflow in .github, resulting in a merge conflict
# where in one branch we deleted .github folder, and the other we add files. We will therefore take the matter in our own hands manually after.

gbp import-orig \
Expand All @@ -171,8 +172,8 @@ jobs:
git merge \
--allow-unrelated-histories \
--signoff \
-m "Merge upstream/pr into debian/latest" \
-m "Filtered out .git, .github and debian from upstram, and preserved .github debian/latest" \
-m "Merge upstream/pr into debian/qcom-next" \
-m "Filtered out .git, .github and debian from upstram, and preserved .github debian/qcom-next" \
upstream/latest

- name: Promote Changelog
Expand Down
70 changes: 0 additions & 70 deletions docker/Dockerfile.amd64.noble

This file was deleted.

71 changes: 0 additions & 71 deletions docker/Dockerfile.amd64.questing

This file was deleted.

Loading
Loading