51 lines
1.8 KiB
Bash
51 lines
1.8 KiB
Bash
#!/bin/sh
|
|
|
|
case $(readlink /proc/$$/exe) in
|
|
*bash)
|
|
set -o posix
|
|
;;
|
|
esac
|
|
set -e
|
|
|
|
|
|
# GLOBAL INFO
|
|
APP_ID='org.gimp.GIMP.Nightly'
|
|
|
|
|
|
# GIMP FILES AS REPO
|
|
if [ "$GITLAB_CI" ]; then
|
|
# Extract previously exported OSTree repo/
|
|
tar xf repo.tar --warning=no-timestamp
|
|
fi
|
|
|
|
|
|
# CONSTRUCT .FLATPAK
|
|
# Generate a Flatpak "bundle" to be tested with GNOME runtime installed
|
|
# (it is NOT a real/full bundle, deps from GNOME runtime are not bundled)
|
|
echo -e "\e[0Ksection_start:`date +%s`:flat_making[collapsed=true]\r\e[0KPackaging repo as ${APP_ID}.flatpak"
|
|
flatpak build-bundle repo ${APP_ID}.flatpak --runtime-repo=https://nightly.gnome.org/gnome-nightly.flatpakrepo ${APP_ID} ${BRANCH}
|
|
echo -e "\e[0Ksection_end:`date +%s`:flat_making\r\e[0K"
|
|
|
|
|
|
# GENERATE SHASUMS FOR .FLATPAK
|
|
echo -e "\e[0Ksection_start:`date +%s`:flat_trust[collapsed=true]\r\e[0KChecksumming ${APP_ID}.flatpak"
|
|
echo "(INFO): ${APP_ID}.flatpak SHA-256: $(sha256sum ${APP_ID}.flatpak | cut -d ' ' -f 1)"
|
|
echo "(INFO): ${APP_ID}.flatpak SHA-512: $(sha512sum ${APP_ID}.flatpak | cut -d ' ' -f 1)"
|
|
echo -e "\e[0Ksection_end:`date +%s`:flat_trust\r\e[0K"
|
|
|
|
|
|
if [ "$GITLAB_CI" ]; then
|
|
output_dir='build/linux/flatpak/_Output'
|
|
mkdir -p $output_dir
|
|
mv ${APP_ID}* $output_dir
|
|
fi
|
|
|
|
|
|
# PUBLISH GIMP REPO IN GNOME NIGHTLY
|
|
# We take the commands from 'flatpak_ci_initiative.yml'
|
|
if [ "$GITLAB_CI" ] && [ "$CI_COMMIT_BRANCH" = "$CI_DEFAULT_BRANCH" ]; then
|
|
echo -e "\e[0Ksection_start:`date +%s`:flat_publish[collapsed=true]\r\e[0KPublishing repo to GNOME nightly"
|
|
curl https://gitlab.gnome.org/GNOME/citemplates/raw/master/flatpak/flatpak_ci_initiative.yml --output flatpak_ci_initiative.yml
|
|
source <(cat flatpak_ci_initiative.yml | sed -n '/flatpak build-update-repo/,/exit $result\"/p' | sed 's/ - //')
|
|
echo -e "\e[0Ksection_end:`date +%s`:flat_publish\r\e[0K"
|
|
fi
|