Blame build-opentoonz-testing.sh

c250ba
#!/bin/bash
c250ba
c250ba
set -e
c250ba
c250ba
BASE_DIR=$(cd `dirname "$0"`; pwd)
a1747c
DATA_DIR="$BASE_DIR/env-builder-data"
c250ba
BUILD_DIR=$DATA_DIR/build
c250ba
PUBLISH_DIR=$BASE_DIR/publish
c250ba
CONFIG_FILE="$BASE_DIR/config.sh"
c250ba
PACKET_BUILD_DIR="$BUILD_DIR/packet"
c250ba
SCRIPT_BUILD_DIR="$BUILD_DIR/script"
576504
OPENTOONZ_TESTING_TAG="testing"
91875d
91875d
source "$BASE_DIR/gen-name.sh"
91875d
c250ba
if [ -f $CONFIG_FILE ]; then
c250ba
	source $CONFIG_FILE
c250ba
fi
c250ba
a1747c
SCRIPT="$BASE_DIR/env/run.sh"
c250ba
c250ba
run_appimage() {
c250ba
    export PLATFORM="$1"
c250ba
    export ARCH="$2"
c250ba
c250ba
    echo ""
5ef601
    echo "Update and build opentoonz for $PLATFORM-$ARCH"
c250ba
    echo ""
5ef601
    $SCRIPT chain update opentoonz-testing \
5ef601
            chain clean_before_do install_release opentoonz-testingappimage
c250ba
91875d
    local TEMPLATE=`gen_name_template "OpenToonz" "$OPENTOONZ_TESTING_TAG" "$PLATFORM" "$ARCH" ".appimage"`
c250ba
    "$PUBLISH_DIR/publish.sh" \
c250ba
        "opentoonz-testing" \
91875d
        "$TEMPLATE" \
c250ba
        "$PACKET_BUILD_DIR/$PLATFORM-$ARCH/opentoonz-testingappimage/install_release" \
c250ba
        "*.appimage" \
c250ba
        "$PACKET_BUILD_DIR/$PLATFORM-$ARCH/opentoonz-testingappimage/envdeps_release/version-opentoonz-testing"
c250ba
}
c250ba
c250ba
run_nsis() {
c250ba
    export PLATFORM="$1"
c250ba
    export ARCH="$2"
c250ba
c250ba
    echo ""
5ef601
    echo "Update and build opentoonz for $PLATFORM-$ARCH"
c250ba
    echo ""
f0ec65
    PLATFORM=win ARCH=32 $SCRIPT clean_before_do env zlib-1.2.11 # for NSIS
5ef601
    $SCRIPT chain update opentoonz-testing \
84db19
            chain clean_before_do install_release opentoonz-testingnsis \
84db19
            chain clean_before_do install_release opentoonz-testingportable
c250ba
91875d
    local TEMPLATE=`gen_name_template "OpenToonz" "$OPENTOONZ_TESTING_TAG" "$PLATFORM" "$ARCH" ".exe"`
c250ba
    "$PUBLISH_DIR/publish.sh" \
c250ba
        "opentoonz-testing" \
91875d
        "$TEMPLATE" \
c250ba
        "$PACKET_BUILD_DIR/$PLATFORM-$ARCH/opentoonz-testingnsis/install_release" \
c250ba
        "*.exe" \
c250ba
        "$PACKET_BUILD_DIR/$PLATFORM-$ARCH/opentoonz-testingnsis/envdeps_release/version-opentoonz-testing"
a000ae
84db19
    local TEMPLATE=`gen_name_template "OpenToonz" "$OPENTOONZ_TESTING_TAG" "$PLATFORM" "$ARCH" ".zip"`
84db19
    "$PUBLISH_DIR/publish.sh" \
84db19
        "opentoonz-testing" \
84db19
        "$TEMPLATE" \
84db19
        "$PACKET_BUILD_DIR/$PLATFORM-$ARCH/opentoonz-testingportable/install_release" \
84db19
        "*.zip" \
84db19
        "$PACKET_BUILD_DIR/$PLATFORM-$ARCH/opentoonz-testingportable/envdeps_release/version-opentoonz-testing"
c250ba
}
c250ba
102811
linux64() { run_appimage linux 64; }
102811
linux32() { run_appimage linux 32; }
102811
win64()   { run_nsis win 64; }
102811
win32()   { run_nsis win 32; }
102811
102811
COMMANDS="$@"
102811
if [ -z "$COMMANDS" ]; then COMMANDS="linux64 linux32 win64 win32"; fi
102811
for COMMAND in $COMMANDS; do
102811
    echo "Command: $COMMAND"
102811
    $COMMAND
102811
done
102811