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
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,19 @@ on:
- rel-1877
- sta-1877
workflow_dispatch:
# on pr
pull_request:
branches:
- main
- rel-1877
- sta-1877
schedule:
- cron: '0 0 * * *'
jobs:
build:
uses: gardenlinux/package-build/.github/workflows/build.yml@main
with:
# publish not on PR
publish_release: ${{ github.event_name != 'pull_request' }}
release: false #${{ github.ref == 'refs/heads/main' }}
arch: '["amd64"]'
8 changes: 6 additions & 2 deletions patches/changelog.patch
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
diff --git a/debian/changelog b/debian/changelog
index 221d265..f146a80 100644
index 221d265..6dfd81d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,7 @@
@@ -1,3 +1,11 @@
+cloud-hypervisor-gl (51.1-1gl0) testing; urgency=low
+
+ * rename package
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why does the changelog say "rename package" again?

+
+cloud-hypervisor-gl (50.0-1gl0) testing; urgency=low
+
+ * rename package
Expand Down
6 changes: 3 additions & 3 deletions prepare_source
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# vim: ft=bash

# commit sha from https://github.com/cyberus-technology/cloud-hypervisor/commits/gardenlinux/
CLOUD_HYPERVISOR_COMMIT_SHA="85f4be2ac0a2a2b20f311e88471afdea360a8fb6"
version_increment="9"
CLOUD_HYPERVISOR_COMMIT_SHA="6416bbfa3ce1eb77ed42f5979d0edab150ad7f72"
version_increment="0"

git_src_commit "$CLOUD_HYPERVISOR_COMMIT_SHA" https://github.com/cyberus-technology/cloud-hypervisor.git

Expand All @@ -11,6 +11,6 @@ cp -r debian "$dir/src/"

apply_patches

version="50.0-1" # current obs base (do not change for rebuilds)
version="51.1-1" # current obs base (do not change for rebuilds)
version_suffix="gl${version_increment}"
message="Update to $version $version_suffix"
Loading