Skip to content

Commit

Permalink
Updated packaging scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisn committed May 4, 2022
1 parent 6182713 commit 69b32c7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions rpm/build_rpm_amazon_linux_2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

set -e

AUDIOWAVEFORM_VERSION=1.5.1
AUDIOWAVEFORM_PACKAGE_VERSION=1.5.1
AUDIOWAVEFORM_VERSION=1.6.0
AUDIOWAVEFORM_PACKAGE_VERSION=1.6.0
IMAGE=audiowaveform_rpm
docker build -t $IMAGE -f Dockerfile-amazon-linux-2 --build-arg AUDIOWAVEFORM_VERSION=${AUDIOWAVEFORM_VERSION} --build-arg AUDIOWAVEFORM_PACKAGE_VERSION=${AUDIOWAVEFORM_PACKAGE_VERSION} .
CONTAINER_ID=`docker create $IMAGE`
Expand Down
4 changes: 2 additions & 2 deletions rpm/build_rpm_centos7.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

set -e

AUDIOWAVEFORM_VERSION=1.5.1
AUDIOWAVEFORM_PACKAGE_VERSION=1.5.1
AUDIOWAVEFORM_VERSION=1.6.0
AUDIOWAVEFORM_PACKAGE_VERSION=1.6.0
IMAGE=audiowaveform_rpm
docker build -t $IMAGE -f Dockerfile-centos7 --build-arg AUDIOWAVEFORM_VERSION=${AUDIOWAVEFORM_VERSION} --build-arg AUDIOWAVEFORM_PACKAGE_VERSION=${AUDIOWAVEFORM_PACKAGE_VERSION} .
CONTAINER_ID=`docker create $IMAGE`
Expand Down
4 changes: 2 additions & 2 deletions rpm/build_rpm_centos8.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

set -e

AUDIOWAVEFORM_VERSION=1.5.1
AUDIOWAVEFORM_PACKAGE_VERSION=1.5.1
AUDIOWAVEFORM_VERSION=1.6.0
AUDIOWAVEFORM_PACKAGE_VERSION=1.6.0
IMAGE=audiowaveform_rpm
docker build -t $IMAGE -f Dockerfile-centos8 --build-arg AUDIOWAVEFORM_VERSION=${AUDIOWAVEFORM_VERSION} --build-arg AUDIOWAVEFORM_PACKAGE_VERSION=${AUDIOWAVEFORM_PACKAGE_VERSION} .
CONTAINER_ID=`docker create $IMAGE`
Expand Down
7 changes: 4 additions & 3 deletions ubuntu/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -e

PROJECT=audiowaveform
[email protected]:bbc/${PROJECT}.git
TAG=1.5.1
TAG=1.6.0
SOURCE_DIR=${PROJECT}_${TAG}
TARBALL=${SOURCE_DIR}.orig.tar.gz
PACKAGES_DIR=packages
Expand All @@ -25,9 +25,10 @@ PPA=ppa:chris-needham/ppa
# 19.10 Eoan (obsolete and will not accept new uploads)
# 20.04 Focal
# 20.10 Groovy (obsolete and will not accept new uploads)
# 21.04 Hirsute
# 21.04 Hirsute (obsolete and will not accept new uploads)
# 21.10 Impish

declare -a ubuntu_releases=("trusty" "xenial" "bionic" "focal" "hirsute")
declare -a ubuntu_releases=("trusty" "xenial" "bionic" "focal" "impish")

cleanup() {
rm -rf ${SOURCE_DIR}/.git
Expand Down

0 comments on commit 69b32c7

Please sign in to comment.