Browse Source

Utility scripts for installing on PRISM on fresh OSs (Ubuntu, RHEL for now).

accumulation-v4.7
Dave Parker 7 years ago
parent
commit
f2b8945bd8
  1. 19
      prism/etc/scripts/prism-install-rhel
  2. 19
      prism/etc/scripts/prism-install-ubuntu

19
prism/etc/scripts/prism-install-rhel

@ -0,0 +1,19 @@
#!/bin/sh
# Script for installation of PRISM on a clean install of RHEL/CentOS/etc Linux.
# Install dependencies: make/gcc/Java
sudo yum update
sudo yum -y install git gcc gcc-c++ java-1.8.0-openjdk-devel
# Install Python (only needed for testing (prism-auto) currently)
sudo yum -y install python
# Download the latest development version from GitHub
git clone https://github.com/prismmodelchecker/prism.git
# Compile PRISM and run a single test
# (should ultimately display: "Testing result: PASS")
cd prism/prism
make
make test

19
prism/etc/scripts/prism-install-ubuntu

@ -0,0 +1,19 @@
#!/bin/sh
# Script for installation of PRISM on a clean install of Ubuntu
# Install dependencies: make/gcc/Java
sudo apt-get update
sudo apt -y install make gcc g++ default-jdk
# 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/prismmodelchecker/prism.git
# Compile PRISM and run a single test
# (should ultimately display: "Testing result: PASS")
cd prism/prism
make
make test
Loading…
Cancel
Save