minecraft-pi-reborn/scripts/ci/run.sh

26 lines
411 B
Bash
Raw Normal View History

2021-06-17 21:32:24 +00:00
#!/bin/sh
set -e
# Install sudo
apt-get update
apt-get install -y sudo
# Prepare
export ARM_PACKAGES_SUPPORTED=1
# Install Dependencies
echo '==== Installing Dependencies ===='
./scripts/install-dependencies.sh
# Build
2021-11-11 03:17:04 +00:00
echo '==== Building & Packaging ===='
rm -rf out build
./scripts/package.sh amd64
./scripts/package.sh arm64
./scripts/package.sh armhf
2021-06-17 21:32:24 +00:00
# Test
echo '==== Testing ===='
./scripts/test.sh