Created
October 25, 2021 06:22
-
-
Save s1db/cb0727e04a6fe52e2a9738aac9b449dc to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/sh | |
# Script for installation of PRISM on a clean install of Ubuntu | |
set -e # Abort if one of the commands fail | |
set -x # Print commands as they are executed | |
# Install dependencies: make/gcc/Java/git | |
sudo apt-get -y update | |
sudo apt -y install make gcc g++ default-jdk git | |
# Install Python (only needed for testing (prism-auto) currently) | |
sudo apt -y install python | |
# Download the latest development version from GitHub | |
git clone https://github.com/phate09/prism.git | |
cd prism | |
git checkout python_server | |
# Compile PRISM and run a single test | |
# (should ultimately display: "Testing result: PASS") | |
(cd prism && make && make test) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment