-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #639 from egraphs-good/oflatt-compile-times
Add summary table and compile times to nightly
- Loading branch information
Showing
126 changed files
with
350 additions
and
78 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# smalls script to test changes to the javascript or html files | ||
# copys javascript and html files to the output directory | ||
|
||
|
||
# determine physical directory of this script | ||
src="${BASH_SOURCE[0]}" | ||
while [ -L "$src" ]; do | ||
dir="$(cd -P "$(dirname "$src")" && pwd)" | ||
src="$(readlink "$src")" | ||
[[ $src != /* ]] && src="$dir/$src" | ||
done | ||
MYDIR="$(cd -P "$(dirname "$src")" && pwd)" | ||
TOP_DIR="$MYDIR/.." | ||
RESOURCE_DIR="$MYDIR/nightly-resources" | ||
NIGHTLY_DIR="$TOP_DIR/nightly" | ||
|
||
echo "Copying resources to $NIGHTLY_DIR/output" | ||
cp "$RESOURCE_DIR"/* "$NIGHTLY_DIR/output" | ||
|
||
cd nightly/output && python3 -m http.server 8002 |
Oops, something went wrong.