-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
118 additions
and
104 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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
../target/statshouse-api usr/bin/ | ||
../cmd/statshouse-api/statshouse-api.service usr/lib/systemd/system/ | ||
../statshouse-ui/build usr/lib/statshouse-api/statshouse-ui/ | ||
../cmd/statshouse-api/build usr/lib/statshouse-api/statshouse-ui/ |
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 |
---|---|---|
@@ -0,0 +1,86 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
while (( "$#" )); do | ||
|
||
IMAGE=$1 | ||
IMAGE_NAME=${IMAGE%:*} | ||
IMAGE_TAG=${IMAGE#*:} | ||
|
||
case "$IMAGE_NAME" in | ||
"almalinux") NAME_RELEASE="almalinux$IMAGE_TAG"; DNF=dnf ;; | ||
"centos") NAME_RELEASE=$IMAGE_TAG; DNF=yum ;; | ||
*) echo "Target name \"$IMAGE_NAME\" is not recognized!"; shift; continue ;; | ||
esac | ||
|
||
NAME_RELEASE=$(echo $NAME_RELEASE | sed -e 's/-/./g;s/:/./g') | ||
|
||
if [[ -z $GOLANG_VERSION ]]; then | ||
echo 'Go version is not specified, using 1.22' | ||
GOLANG_VERSION='1.22.0' | ||
fi | ||
|
||
# version | ||
UPSTREAM=$(git describe --tags --always --dirty) | ||
UPSTREAM=${UPSTREAM#v} # v1.0.0 -> 1.0.0 | ||
BUILD_TIME=$(date +%FT%T%z) | ||
REACT_APP_BUILD_VERSION=$UPSTREAM-$BUILD_TIME | ||
if [[ -z $BUILD_VERSION ]]; then | ||
if [[ ! -z $BUILD_VERSION_SUFFIX ]]; then | ||
BUILD_VERSION=$UPSTREAM-$BUILD_VERSION_SUFFIX | ||
elif [[ ! -z $TAG ]]; then | ||
BUILD_VERSION=$UPSTREAM-$TAG | ||
else | ||
BUILD_VERSION=$UPSTREAM | ||
fi | ||
fi | ||
|
||
if [[ -z $GID ]]; then | ||
GID=$(id -g) | ||
fi | ||
|
||
# builder image | ||
BUILD_IMAGE=statshouse_builder_$NAME_RELEASE | ||
docker image build -t $BUILD_IMAGE - <<EOF | ||
FROM $IMAGE | ||
RUN $DNF update -y | ||
RUN $DNF group install -y "Development Tools" | ||
RUN curl -L https://go.dev/dl/go$GOLANG_VERSION.linux-amd64.tar.gz | tar -C /usr/local -xzf - | ||
ENV PATH=\$PATH:/usr/local/go/bin | ||
RUN groupadd -g $GID builder | ||
RUN useradd -u $UID -g $GID builder | ||
EOF | ||
|
||
# frontend | ||
if [ ! -d cmd/statshouse-api/build ]; then | ||
if [[ -z $NODE_IMAGE ]]; then | ||
NODE_IMAGE="node:18-bullseye" | ||
echo "Node image is not specified, using $NODE_IMAGE" | ||
fi | ||
docker run --rm -u "$UID:$GID" -v "$PWD:/src" -w /src -e REACT_APP_BUILD_VERSION="$REACT_APP_BUILD_VERSION" $NODE_IMAGE make build-sh-ui | ||
fi | ||
|
||
# backend & RPM | ||
GOCACHE=build/go-cache | ||
mkdir -p "$PWD/$GOCACHE" | ||
docker run -i --rm -u "$UID:$GID" -v "$PWD:/src" -w /src \ | ||
-e BUILD_MACHINE="$(uname -n -m -r -s)" \ | ||
-e BUILD_VERSION="$UPSTREAM" \ | ||
-e BUILD_COMMIT="$(git log --format="%H" -n 1)" \ | ||
-e BUILD_COMMIT_TS="$(git log --format="%ct" -n 1)" \ | ||
-e GOCACHE="/src/$GOCACHE" -e BUILD_TRUSTED_SUBNET_GROUPS \ | ||
-e BUILD_ID \ | ||
-e BUILD_TIME \ | ||
$BUILD_IMAGE /bin/bash <<EOF | ||
set -x &&\ | ||
make build-sh build-sh-metadata build-sh-api &&\ | ||
mkdir -p BUILD BUILDROOT SOURCES SPECS SRPMS RPMS &&\ | ||
cp build/statshouse.spec SPECS/statshouse.spec &&\ | ||
BUILD_VERSION=\$(echo $BUILD_VERSION | sed -e 's:-:.:g') &&\ | ||
rpmbuild --define "_topdir \$(pwd)" --define "BUILD_VERSION \$BUILD_VERSION" --define "OS_NAME_RELEASE $NAME_RELEASE" -bb SPECS/statshouse.spec &&\ | ||
rm -rf BUILD BUILDROOT SOURCES SPECS SRPMS &&\ | ||
true | ||
EOF | ||
|
||
shift | ||
done |
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
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