forked from git/git
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release: build unsigned Ubuntu .deb package
- include `scalar` - build & upload unsigned .deb package Co-authored-by: Lessley Dennington <[email protected]>
- Loading branch information
1 parent
55fe1c4
commit 1015e36
Showing
1 changed file
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -458,3 +458,83 @@ jobs: | |
git/.github/macos-installer/*.dmg | ||
git/.github/macos-installer/*.pkg | ||
# End build and sign Mac OSX installers | ||
|
||
# Build unsigned Ubuntu package | ||
create-linux-artifacts: | ||
runs-on: ubuntu-latest | ||
needs: prereqs | ||
steps: | ||
- name: Install git dependencies | ||
run: | | ||
set -ex | ||
sudo apt-get update -q | ||
sudo apt-get install -y -q --no-install-recommends gettext libcurl4-gnutls-dev libpcre3-dev asciidoc xmlto | ||
- name: Clone git | ||
uses: actions/checkout@v3 | ||
with: | ||
path: git | ||
|
||
- name: Build and create Debian package | ||
run: | | ||
set -ex | ||
die () { | ||
echo "$*" >&2 | ||
exit 1 | ||
} | ||
echo "${{ needs.prereqs.outputs.tag_version }}" >>git/version | ||
make -C git GIT-VERSION-FILE | ||
VERSION="${{ needs.prereqs.outputs.tag_version }}" | ||
ARCH="$(dpkg-architecture -q DEB_HOST_ARCH)" | ||
if test -z "$ARCH"; then | ||
die "Could not determine host architecture!" | ||
fi | ||
PKGNAME="microsoft-git_$VERSION" | ||
PKGDIR="$(dirname $(pwd))/$PKGNAME" | ||
rm -rf "$PKGDIR" | ||
mkdir -p "$PKGDIR" | ||
DESTDIR="$PKGDIR" make -C git -j5 V=1 DEVELOPER=1 \ | ||
USE_LIBPCRE=1 \ | ||
NO_CROSS_DIRECTORY_HARDLINKS=1 \ | ||
ASCIIDOC8=1 ASCIIDOC_NO_ROFF=1 \ | ||
ASCIIDOC='TZ=UTC asciidoc' \ | ||
prefix=/usr/local \ | ||
gitexecdir=/usr/local/lib/git-core \ | ||
libexecdir=/usr/local/lib/git-core \ | ||
htmldir=/usr/local/share/doc/git/html \ | ||
install install-doc install-html | ||
cd .. | ||
mkdir "$PKGNAME/DEBIAN" | ||
# Based on https://packages.ubuntu.com/xenial/vcs/git | ||
cat >"$PKGNAME/DEBIAN/control" <<EOF | ||
Package: microsoft-git | ||
Version: $VERSION | ||
Section: vcs | ||
Priority: optional | ||
Architecture: $ARCH | ||
Depends: libcurl3-gnutls, liberror-perl, libexpat1, libpcre2-8-0, perl, perl-modules, zlib1g | ||
Maintainer: Git Fundamentals <[email protected]> | ||
Description: Git client built from the https://github.com/microsoft/git repository, | ||
specialized in supporting monorepo scenarios. Includes the Scalar CLI. | ||
EOF | ||
dpkg-deb -Zxz --build "$PKGNAME" | ||
# Move Debian package for later artifact upload | ||
mv "$PKGNAME.deb" "$GITHUB_WORKSPACE" | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: linux-artifacts | ||
path: | | ||
*.deb | ||
# End build unsigned Debian package |