[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gnunet] 03/16: unify deb-package scripts under ci/common/deb-package
From: |
gnunet |
Subject: |
[gnunet] 03/16: unify deb-package scripts under ci/common/deb-package |
Date: |
Sun, 16 Jun 2024 10:44:27 +0200 |
This is an automated email from the git hooks/post-receive script.
nora-grothoff pushed a commit to branch master
in repository gnunet.
commit ab773df0599b134803469451cfe782d93886bfbc
Author: Nullptrderef <nullptrderef@proton.me>
AuthorDate: Sun Jun 16 09:13:58 2024 +0200
unify deb-package scripts under ci/common/deb-package
---
.../deb-package}/job.sh | 0
.../deb-package}/version.sh | 0
contrib/ci/jobs/2-amd64-deb-package/job.sh | 23 +---------------------
contrib/ci/jobs/2-amd64-deb-package/version.sh | 18 +----------------
contrib/ci/jobs/5-arm64-deb-package/job.sh | 23 +---------------------
contrib/ci/jobs/5-arm64-deb-package/version.sh | 18 +----------------
6 files changed, 4 insertions(+), 78 deletions(-)
diff --git a/contrib/ci/jobs/2-amd64-deb-package/job.sh
b/contrib/ci/common/deb-package/job.sh
similarity index 100%
copy from contrib/ci/jobs/2-amd64-deb-package/job.sh
copy to contrib/ci/common/deb-package/job.sh
diff --git a/contrib/ci/jobs/2-amd64-deb-package/version.sh
b/contrib/ci/common/deb-package/version.sh
similarity index 100%
copy from contrib/ci/jobs/2-amd64-deb-package/version.sh
copy to contrib/ci/common/deb-package/version.sh
diff --git a/contrib/ci/jobs/2-amd64-deb-package/job.sh
b/contrib/ci/jobs/2-amd64-deb-package/job.sh
deleted file mode 100755
index 00ded9323..000000000
--- a/contrib/ci/jobs/2-amd64-deb-package/job.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-set -exuo pipefail
-# This file is in the public domain.
-# Helper script to build the latest DEB packages in the container.
-
-
-unset LD_LIBRARY_PATH
-
-# Install build-time dependencies.
-# Update apt cache first
-apt-get update
-mk-build-deps --install --tool='apt-get -o Debug::pkgProblemResolver=yes
--no-install-recommends --yes' debian/control
-
-export VERSION="$(./contrib/ci/jobs/2-deb-package/version.sh)"
-echo "Building gnunet packages version ${VERSION}"
-EMAIL=none gbp dch --ignore-branch --debian-tag="%(version)s" --git-author
--new-version="${VERSION}"
-./bootstrap
-dpkg-buildpackage -rfakeroot -b -uc -us
-
-ls -alh ../*.deb
-mkdir -p /artifacts/gnunet/${CI_COMMIT_REF} # Variable comes from CI
environment
-mv ../*.deb /artifacts/gnunet/${CI_COMMIT_REF}/
diff --git a/contrib/ci/jobs/2-amd64-deb-package/job.sh
b/contrib/ci/jobs/2-amd64-deb-package/job.sh
new file mode 120000
index 000000000..3301c9cec
--- /dev/null
+++ b/contrib/ci/jobs/2-amd64-deb-package/job.sh
@@ -0,0 +1 @@
+../../common/deb-package/job.sh
\ No newline at end of file
diff --git a/contrib/ci/jobs/2-amd64-deb-package/version.sh
b/contrib/ci/jobs/2-amd64-deb-package/version.sh
deleted file mode 100755
index b12ca77ba..000000000
--- a/contrib/ci/jobs/2-amd64-deb-package/version.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-set -ex
-
-BRANCH=$(git name-rev --name-only HEAD)
-if [ -z "${BRANCH}" ]; then
- exit 1
-else
- # "Unshallow" our checkout, but only our current branch, and exclude
the submodules.
- git fetch --no-recurse-submodules --tags --depth=1000 origin "${BRANCH}"
- RECENT_VERSION_TAG=$(git describe --tags --match 'v*.*.*' --exclude
'*-*dev*' --always --abbrev=0 HEAD || exit 1)
- commits="$(git rev-list ${RECENT_VERSION_TAG}..HEAD --count)"
- if [ "${commits}" = "0" ]; then
- git describe --tag HEAD | sed -r 's/^v//' || exit 1
- else
- echo $(echo ${RECENT_VERSION_TAG} | sed -r
's/^v//')-${commits}-$(git rev-parse --short=8 HEAD)
- fi
-fi
diff --git a/contrib/ci/jobs/2-amd64-deb-package/version.sh
b/contrib/ci/jobs/2-amd64-deb-package/version.sh
new file mode 120000
index 000000000..ddea5ae8b
--- /dev/null
+++ b/contrib/ci/jobs/2-amd64-deb-package/version.sh
@@ -0,0 +1 @@
+../../common/deb-package/version.sh
\ No newline at end of file
diff --git a/contrib/ci/jobs/5-arm64-deb-package/job.sh
b/contrib/ci/jobs/5-arm64-deb-package/job.sh
deleted file mode 100755
index 00ded9323..000000000
--- a/contrib/ci/jobs/5-arm64-deb-package/job.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-set -exuo pipefail
-# This file is in the public domain.
-# Helper script to build the latest DEB packages in the container.
-
-
-unset LD_LIBRARY_PATH
-
-# Install build-time dependencies.
-# Update apt cache first
-apt-get update
-mk-build-deps --install --tool='apt-get -o Debug::pkgProblemResolver=yes
--no-install-recommends --yes' debian/control
-
-export VERSION="$(./contrib/ci/jobs/2-deb-package/version.sh)"
-echo "Building gnunet packages version ${VERSION}"
-EMAIL=none gbp dch --ignore-branch --debian-tag="%(version)s" --git-author
--new-version="${VERSION}"
-./bootstrap
-dpkg-buildpackage -rfakeroot -b -uc -us
-
-ls -alh ../*.deb
-mkdir -p /artifacts/gnunet/${CI_COMMIT_REF} # Variable comes from CI
environment
-mv ../*.deb /artifacts/gnunet/${CI_COMMIT_REF}/
diff --git a/contrib/ci/jobs/5-arm64-deb-package/job.sh
b/contrib/ci/jobs/5-arm64-deb-package/job.sh
new file mode 120000
index 000000000..3301c9cec
--- /dev/null
+++ b/contrib/ci/jobs/5-arm64-deb-package/job.sh
@@ -0,0 +1 @@
+../../common/deb-package/job.sh
\ No newline at end of file
diff --git a/contrib/ci/jobs/5-arm64-deb-package/version.sh
b/contrib/ci/jobs/5-arm64-deb-package/version.sh
deleted file mode 100755
index b12ca77ba..000000000
--- a/contrib/ci/jobs/5-arm64-deb-package/version.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-set -ex
-
-BRANCH=$(git name-rev --name-only HEAD)
-if [ -z "${BRANCH}" ]; then
- exit 1
-else
- # "Unshallow" our checkout, but only our current branch, and exclude
the submodules.
- git fetch --no-recurse-submodules --tags --depth=1000 origin "${BRANCH}"
- RECENT_VERSION_TAG=$(git describe --tags --match 'v*.*.*' --exclude
'*-*dev*' --always --abbrev=0 HEAD || exit 1)
- commits="$(git rev-list ${RECENT_VERSION_TAG}..HEAD --count)"
- if [ "${commits}" = "0" ]; then
- git describe --tag HEAD | sed -r 's/^v//' || exit 1
- else
- echo $(echo ${RECENT_VERSION_TAG} | sed -r
's/^v//')-${commits}-$(git rev-parse --short=8 HEAD)
- fi
-fi
diff --git a/contrib/ci/jobs/5-arm64-deb-package/version.sh
b/contrib/ci/jobs/5-arm64-deb-package/version.sh
new file mode 120000
index 000000000..ddea5ae8b
--- /dev/null
+++ b/contrib/ci/jobs/5-arm64-deb-package/version.sh
@@ -0,0 +1 @@
+../../common/deb-package/version.sh
\ No newline at end of file
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [gnunet] branch master updated (befbaa7c2 -> 89f266845), gnunet, 2024/06/16
- [gnunet] 01/16: use common for sharing amd64 build scripts and arm64 build scripts, rename amd64 build dirs to [idx]-amd64-[job], gnunet, 2024/06/16
- [gnunet] 02/16: fix the gitignore, gnunet, 2024/06/16
- [gnunet] 05/16: extract deploy-package scripts, gnunet, 2024/06/16
- [gnunet] 03/16: unify deb-package scripts under ci/common/deb-package,
gnunet <=
- [gnunet] 06/16: untested (for now, codespell needs to be fixed prior to testing) riscv64, gnunet, 2024/06/16
- [gnunet] 12/16: -fix indent, gnunet, 2024/06/16
- [gnunet] 10/16: at the request of C to get this working, use unstable ATM debian only has RISC-V containers for unstable debian. Due to how ci.sh is setup, we can only pick one image for the base., gnunet, 2024/06/16
- [gnunet] 09/16: clean often doesnt exist, gnunet, 2024/06/16
- [gnunet] 14/16: remove unneeded ignores, gnunet, 2024/06/16
- [gnunet] 07/16: all the codespell errors are now gone, gnunet, 2024/06/16
- [gnunet] 13/16: document dependency, gnunet, 2024/06/16
- [gnunet] 11/16: use unstable only for riscv64, gnunet, 2024/06/16
- [gnunet] 15/16: quote the print, gnunet, 2024/06/16
- [gnunet] 16/16: Merge branch 'ci-riscv' into 'master', gnunet, 2024/06/16