Skip to content

Commit

Permalink
[Packaging] PPA builds for trusty/xenial
Browse files Browse the repository at this point in the history
Can't actually sign and upload until I can upload the key.
Blocked by travis-ci/travis.rb#448
  • Loading branch information
lukeyeager committed Oct 28, 2016
1 parent 80abc7b commit 6894fff
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packaging/deb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get update \
lintian \
&& rm -rf /var/lib/apt/lists/*

ENV DEBFULLNAME "NVIDIA CORPORATION"
ENV DEBFULLNAME "DIGITS Development Team"
ENV DEBEMAIL "[email protected]"

ARG UPSTREAM_VERSION
Expand Down
17 changes: 16 additions & 1 deletion scripts/travis/deb-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,20 @@ ROOT_DIR=$( dirname "$(dirname "$LOCAL_DIR")")
set -x

git fetch --tags
$ROOT_DIR/packaging/deb/build.sh
cd $ROOT_DIR/packaging/deb

# trusty build
DEBIAN_REVISION=1ppa1~trusty ./build.sh
pushd .
cd dist/*trusty
#debsign -k 97A4B458 *source.changes
#dput -U ppa:nvidia-digits/dev/ubuntu/trusty *source.changes
popd

# xenial build
DEBIAN_REVISION=1ppa1~xenial ./build.sh
pushd .
cd dist/*xenial
#debsign -k 97A4B458 *source.changes
#dput -U ppa:nvidia-digits/dev/ubuntu/xenial *source.changes
popd

0 comments on commit 6894fff

Please sign in to comment.