bigbluebutton-Github/build/packages-template/bbb-graphql-middleware/build.sh
2023-07-18 12:31:08 -04:00

50 lines
1.3 KiB
Bash
Executable File

#!/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
# go mod tidy
go version
CGO_ENABLED=0 go build -o bbb-graphql-middleware cmd/bbb-graphql-middleware/main.go
echo "Build of bbb-graphql-middleware finished"
cp 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
. ./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