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
10 changes: 9 additions & 1 deletion .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:
release: ${{ github.ref == 'refs/heads/main' }}
# publish not on PR
publish_release: ${{ github.event_name != 'pull_request' }}
release: false #${{ github.ref == 'refs/heads/main' }}
arch: '["amd64"]'
9 changes: 7 additions & 2 deletions patches/changelog.patch
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
diff --git a/debian/changelog b/debian/changelog
index 221d265..f146a80 100644
index 221d265..8b74e0a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,7 @@
@@ -1,3 +1,12 @@
+cloud-hypervisor-gl (51.1-1gl0~bp1877) testing; urgency=low
+
+ * Cloud Hypervisor 51.1
+
+cloud-hypervisor-gl (50.0-1gl0~bp1877) testing; urgency=low
+
+ * Cloud Hypervisor 50.0
+ * rename package
+
cloud-hypervisor (50.0-1) stable unstable bionic focal impish jammy kinetic; urgency=low
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}~bp1877"
message="Update to $version $version_suffix"
Loading