59 lines
1.8 KiB
Bash
59 lines
1.8 KiB
Bash
|
#!/bin/bash -ex
|
||
|
|
||
|
TARGET=`basename $(pwd)`
|
||
|
|
||
|
|
||
|
PACKAGE=$(echo $TARGET | cut -d'_' -f1)
|
||
|
VERSION=$(echo $TARGET | cut -d'_' -f2)
|
||
|
DISTRO=$(echo $TARGET | cut -d'_' -f3)
|
||
|
TAG=$(echo $TARGET | cut -d'_' -f4)
|
||
|
BUILD=$1
|
||
|
|
||
|
# Clean up directories
|
||
|
rm -rf staging
|
||
|
rm -rf ./build
|
||
|
|
||
|
# Create directories for fpm to process
|
||
|
DIRS="/usr/local/bin/bbb-graphql-middleware /etc/default/bbb-graphql-middleware /lib/systemd/system/ /usr/share/bigbluebutton/nginx"
|
||
|
for dir in $DIRS; do
|
||
|
mkdir -p staging$dir
|
||
|
done
|
||
|
|
||
|
mkdir -p ./build
|
||
|
#git config --global --add safe.directory ${PWD}
|
||
|
APP_VERSION=$(cat ./VERSION)
|
||
|
GOMOD=$(go list -m)
|
||
|
APP_REV=$(git rev-parse --short HEAD)
|
||
|
echo $GOMOD ${APP_VERSION[@]} $COMMIT
|
||
|
go mod tidy
|
||
|
CGO_ENABLED=0 go build -o ./build/bbb-graphql-middleware cmd/bbb-graphql-middleware/main.go
|
||
|
echo "Build of bbb-graphql-middleware finished"
|
||
|
|
||
|
mv build/bbb-graphql-middleware staging/usr/local/bin/bbb-graphql-middleware
|
||
|
|
||
|
# Create service bbb-graphql-middleware
|
||
|
cp ./bbb-graphql-middleware-config.env staging/etc/default/bbb-graphql-middleware
|
||
|
cp ./bbb-graphql-middleware.service staging/lib/systemd/system/bbb-graphql-middleware.service
|
||
|
|
||
|
# Set nginx location
|
||
|
cp ./graphql.nginx staging/usr/share/bigbluebutton/nginx
|
||
|
|
||
|
|
||
|
cp ./build/bbb-webrtc-recorder staging/usr/bin
|
||
|
cp ./build/env staging/etc/default/bbb-webrtc-recorder
|
||
|
cp ./config/bbb-webrtc-recorder.yml staging/etc/bbb-webrtc-recorder/bbb-webrtc-recorder.yml
|
||
|
cp bbb-webrtc-recorder.service staging/usr/lib/systemd/system
|
||
|
|
||
|
. ./opts-$DISTRO.sh
|
||
|
|
||
|
#
|
||
|
# Build package
|
||
|
fpm -s dir -C ./staging -n $PACKAGE \
|
||
|
--version $VERSION --epoch $EPOCH \
|
||
|
--after-install after-install.sh \
|
||
|
--after-remove after-remove.sh \
|
||
|
--before-remove before-remove.sh \
|
||
|
--description "GraphQL middleware component for BigBlueButton" \
|
||
|
$DIRECTORIES \
|
||
|
$OPTS
|