-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
87 additions
and
31 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,9 +1,9 @@ | ||
{ | ||
"args" : { | ||
"GIT": "true", | ||
"BASE_IMAGE" : "base", | ||
"NAME": "covered", | ||
"REPO_URL": "https://github.com/Manarabdelaty/verilog-covered", | ||
"REPO_COMMIT": "93bee2e0d89c1beb5943a329109dcf24d59498e6" | ||
} | ||
} | ||
"args": { | ||
"GIT": "true", | ||
"BASE_IMAGE": "base", | ||
"NAME": "covered", | ||
"REPO_URL": "https://github.com/Manarabdelaty/verilog-covered", | ||
"REPO_COMMIT": "93bee2e0d89c1beb5943a329109dcf24d59498e6" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
"REPO_URL": "https://github.com/efabless/foss-asic-tools", | ||
"REPO_COMMIT": "alpha" | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -28,5 +28,8 @@ yum install -y \ | |
bzip2 \ | ||
mailcap \ | ||
numpy \ | ||
gedit | ||
gedit \ | ||
xterm \ | ||
meld \ | ||
|
||
|
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
"REPO_URL": "n/a", | ||
"REPO_COMMIT": "0.9.5" | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"args": { | ||
"GIT": "true", | ||
"GIT": "false", | ||
"BASE_IMAGE": "base", | ||
"NAME": "openlane", | ||
"REPO_URL": "https://github.com/The-OpenROAD-Project/OpenLane", | ||
"REPO_COMMIT": "2022.02.01_02.19.58" | ||
"REPO_COMMIT": "2022.02.08_01.48.52" | ||
} | ||
} | ||
} |
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,13 @@ | ||
ARG BASE_IMAGE | ||
FROM ${BASE_IMAGE} as builder | ||
|
||
ARG REPO_URL | ||
ARG REPO_COMMIT | ||
ARG NAME | ||
|
||
#ADD scripts/dependencies.sh dependencies.sh | ||
#RUN bash dependencies.sh | ||
|
||
ADD scripts/install.sh install.sh | ||
RUN bash install.sh | ||
# |
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,9 @@ | ||
{ | ||
"args": { | ||
"GIT": "true", | ||
"BASE_IMAGE": "base", | ||
"NAME": "openroad", | ||
"REPO_URL": "https://github.com/The-OpenROAD-Project/OpenROAD.git", | ||
"REPO_COMMIT": "5782fa96bde0109c9ca46c1a01a95dc00579082c" | ||
} | ||
} |
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,24 @@ | ||
#!/bin/bash | ||
|
||
yum install -y centos-release-scl git devtoolset-8-gcc devtoolset-8-gcc-c++ | ||
source scl_source enable devtoolset-8 | ||
scl enable devtoolset-8 bash | ||
|
||
|
||
git clone --recursive https://github.com/The-OpenROAD-Project/OpenROAD.git | ||
cd OpenROAD/ | ||
git submodule update --init --recursive | ||
./etc/DependencyInstaller.sh -dev | ||
mkdir build | ||
cd build | ||
cmake .. -DCMAKE_INSTALL_PREFIX="/foss/tools/openroad" | ||
make | ||
make install | ||
|
||
|
||
|
||
sudo apt update | ||
sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libsqlite3-dev libreadline-dev libffi-dev curl libbz2-dev | ||
|
||
curl -O https://www.python.org/ftp/python/3.8.2/Python-3.8.2.tar.xz | ||
tar -xf Python-3.8.2.tar.xz |
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,4 @@ | ||
Name,Version | ||
base,alpha | ||
openroad,5782fa96bde0109c9ca46c1a01a95dc00579082c | ||
foss-asic-tools,openroad |
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