Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Best-effort CI fixing concept #5

Merged
merged 1 commit into from
Aug 15, 2023
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/setup/copr-custom-script
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ git clone \
cd "$workdir"
webhook-checkout "$hook_payload"

git config --global user.email "you@example.com"
git config --global user.name "CI for GNU tar on Fedora and EPEL"

for i in .github/setup/patches/*.patch; do
test -f "$i" || continue
git am "$i" || continue
done

./bootstrap && ./configure && make dist-xz
tarball=$(echo tar-*.tar.xz)
version=${tarball%%.tar.xz}
Expand Down
39 changes: 39 additions & 0 deletions .github/setup/patches/0001-Bump-to-a-pre-release-versions.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
From 2cc1b00881938def456dd67b971c5844fbfe2e9b Mon Sep 17 00:00:00 2001
From: Pavel Raiskup <praiskup@redhat.com>
Date: Tue, 1 Aug 2023 15:32:24 +0200
Subject: [PATCH] Bump to a pre-release versions

---
NEWS | 2 +-
configure.ac | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index 22d66500..222dfd5d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,7 @@
GNU tar NEWS - User visible changes. 2023-08-02
Please send GNU tar bug reports to <bug-tar@gnu.org>

-version TBD
+version 1.35.90

* New manual section "Reproducibility", for reproducible tarballs.

diff --git a/configure.ac b/configure.ac
index 338e1834..4367d880 100644
--- a/configure.ac
+++ b/configure.ac
@@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

-AC_INIT([GNU tar], [1.35], [bug-tar@gnu.org])
+AC_INIT([GNU tar], [1.35.90], [bug-tar@gnu.org])
AC_CONFIG_SRCDIR([src/tar.c])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_HEADERS([config.h])
--
2.41.0

Loading