mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
105dd7152e
* Package frontend in deb * Add artifact download * remove 0.8.0 check * remove array casting * fix format once more * another try * add brackets again * add version * and bash * and shell * more debuging * various style fixes * small fixes * and ls for prosperity * debug * maybe git as source? * fix download cmd? * debug a bit * debug a bit more * remove sha download - is not working with GHA restrictions * write version number * check if a new frontend must be dowloaded * write versions into frontend packages * Matmair/issue7338 (#205) * Package frontend in deb * Add artifact download * remove 0.8.0 check * remove array casting * fix format once more * another try * add brackets again * add version * and bash * and shell * more debuging * various style fixes * small fixes * and ls for prosperity * debug * maybe git as source? * fix download cmd? * debug a bit * debug a bit more * remove sha download - is not working with GHA restrictions * write version number * check if a new frontend must be dowloaded * write versions into frontend packages * change ref dir for tests * add better build logging * extend task to get ref from package * fix downloading syntax * fix name ref * make more robust * more logging * move import * turn down unzipping noise * strip content (spaces, newlines) * add info what happens now * fix quite flag * adjust publisher
69 lines
2.5 KiB
Bash
Executable File
69 lines
2.5 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# packager.io before script
|
|
#
|
|
|
|
set -eu
|
|
|
|
# The sha is the second element in APP_PKG_ITERATION
|
|
REPO="inventree/InvenTree"
|
|
VERSION="$APP_PKG_VERSION-$APP_PKG_ITERATION"
|
|
SHA=$(echo $APP_PKG_ITERATION | cut -d'.' -f2)
|
|
|
|
# Download info
|
|
echo "INFO collection | Getting info from github for commit $SHA"
|
|
curl -L -s -f \
|
|
-H "Accept: application/vnd.github+json" \
|
|
-H "X-GitHub-Api-Version: 2022-11-28" \
|
|
https://api.github.com/repos/$REPO/commits/$SHA > commit.json
|
|
echo "INFO collection | Got commit.json with size $(wc -c commit.json)"
|
|
curl -L -s -f \
|
|
-H "Accept: application/vnd.github+json" \
|
|
-H "X-GitHub-Api-Version: 2022-11-28" \
|
|
https://api.github.com/repos/$REPO/commits/$SHA/branches-where-head > branches.json
|
|
echo "INFO collection | Got branches.json with size $(wc -c branches.json)"
|
|
curl -L -s -f \
|
|
-H "Accept: application/vnd.github+json" \
|
|
-H "X-GitHub-Api-Version: 2022-11-28" \
|
|
https://api.github.com/repos/$REPO/commits/$APP_PKG_VERSION > tag.json
|
|
echo "INFO collection | Got tag.json with size $(wc -c tag.json)"
|
|
|
|
# Extract info
|
|
echo "INFO extract | Extracting info from github"
|
|
DATE=$(jq -r '.commit.committer.date' commit.json)
|
|
BRANCH=$(jq -r '.[].name' branches.json)
|
|
NODE_ID=$(jq -r '.node_id' commit.json)
|
|
SIGNATURE=$(jq -r '.commit.verification.signature' commit.json)
|
|
FULL_SHA=$(jq -r '.sha' commit.json)
|
|
|
|
echo "INFO write | Write VERSION information"
|
|
echo "$VERSION" > VERSION
|
|
echo "INVENTREE_COMMIT_HASH='$SHA'" >> VERSION
|
|
echo "INVENTREE_COMMIT_SHA='$FULL_SHA'" >> VERSION
|
|
echo "INVENTREE_COMMIT_DATE='$DATE'" >> VERSION
|
|
echo "INVENTREE_PKG_INSTALLER='PKG'" >> VERSION
|
|
echo "INVENTREE_PKG_BRANCH='$BRANCH'" >> VERSION
|
|
echo "INVENTREE_PKG_TARGET='$TARGET'" >> VERSION
|
|
echo "NODE_ID='$NODE_ID'" >> VERSION
|
|
echo "SIGNATURE='$SIGNATURE'" >> VERSION
|
|
|
|
echo "INFO write | Written VERSION information"
|
|
echo "### VERSION ###"
|
|
cat VERSION
|
|
echo "### VERSION ###"
|
|
|
|
# Try to get frontend
|
|
echo "INFO frontend | Trying to get frontend"
|
|
# Check if tag sha is the same as the commit sha
|
|
TAG_SHA=$(jq -r '.sha' tag.json)
|
|
if [ "$TAG_SHA" != "$FULL_SHA" ]; then
|
|
echo "INFO frontend | Tag sha '$TAG_SHA' is not the same as commit sha $FULL_SHA, can not download frontend"
|
|
else
|
|
echo "INFO frontend | Getting frontend from github via tag"
|
|
curl https://github.com/$REPO/releases/download/$APP_PKG_VERSION/frontend-build.zip -L -O -f
|
|
mkdir -p src/backend/InvenTree/web/static
|
|
echo "INFO frontend | Unzipping frontend"
|
|
unzip -qq frontend-build.zip -d src/backend/InvenTree/web/static/web
|
|
echo "INFO frontend | Unzipped frontend"
|
|
fi
|