-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update install scripts for PRISM-games.
- Loading branch information
1 parent
7fd364e
commit 7c9cf45
Showing
4 changed files
with
14 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
#!/bin/sh | ||
|
||
# Script for installation of PRISM on a clean install of Cygwin | ||
# Script for installation of PRISM-games on a clean install of Cygwin | ||
# already set up with required packages, e.g., via prism-install-win | ||
|
||
set -e # Abort if one of the commands fails | ||
set -x # Print commands as they are executed | ||
|
||
# Download the latest development version from GitHub | ||
git clone https://github.com/prismmodelchecker/prism.git | ||
git clone https://github.com/prismmodelchecker/prism-games.git | ||
|
||
# Compile PRISM and run a single test | ||
# (should ultimately display: "Testing result: PASS") | ||
(cd prism/prism && make && make test) | ||
# Compile PRISM-games and run a few tests | ||
# (each should display: "Testing result: PASS") | ||
(cd prism-games/prism && make && make test testz3) |
This file contains 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
This file contains 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
This file contains 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