Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump siliconcompiler from 55a8350 to 6f85985 #17

Merged
merged 3 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/bin/install_surelog_linux.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Get directory of setup scripts
src_path=$(cd -- "$(dirname "$0")/../../../siliconcompiler" >/dev/null 2>&1 ; pwd -P)
src_path=$(cd -- "$(dirname "$0")/../../../siliconcompiler/siliconcompiler/toolscripts" >/dev/null 2>&1 ; pwd -P)

yum install -y libuuid-devel java-11-openjdk-devel python3 zlib-static

Expand All @@ -11,9 +11,9 @@ export ADDITIONAL_CMAKE_OPTIONS="-DPython3_ROOT_DIR=$PYTHON_ROOT -DPython3_FIND_
mkdir build

# Build surelog (install prefix defined outside file)
git clone $(python3 ${src_path}/setup/_tools.py --tool surelog --field git-url) build/Surelog
git clone $(python3 ${src_path}/_tools.py --tool surelog --field git-url) build/Surelog
cd build/Surelog
git checkout $(python3 ${src_path}/setup/_tools.py --tool surelog --field git-commit)
git checkout $(python3 ${src_path}/_tools.py --tool surelog --field git-commit)
git submodule update --init --recursive

export LDFLAGS="-lrt"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/bin/install_surelog_macos.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Get directory of setup scripts
src_path=$(cd -- "$(dirname "$0")/../../../siliconcompiler" >/dev/null 2>&1 ; pwd -P)
src_path=$(cd -- "$(dirname "$0")/../../../siliconcompiler/siliconcompiler/toolscripts" >/dev/null 2>&1 ; pwd -P)

# Install dependencies
pip3 install orderedmultidict
Expand All @@ -10,9 +10,9 @@ pip3 install cmake
mkdir build

# Install Surelog
git clone $(python3 ${src_path}/setup/_tools.py --tool surelog --field git-url) build/Surelog
git clone $(python3 ${src_path}/_tools.py --tool surelog --field git-url) build/Surelog
cd build/Surelog
git checkout $(python3 ${src_path}/setup/_tools.py --tool surelog --field git-commit)
git checkout $(python3 ${src_path}/_tools.py --tool surelog --field git-commit)
git submodule update --init --recursive

cmake --version # must be >=3.20
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bin/install_surelog_win.bat
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ pip3 install psutil

git config --global core.autocrlf input

for /f "tokens=* USEBACKQ" %%i in (`python3 siliconcompiler/setup/_tools.py --tool surelog --field git-url`) do set GITURL=%%i
for /f "tokens=* USEBACKQ" %%i in (`python3 siliconcompiler/setup/_tools.py --tool surelog --field git-commit`) do set GITCOMMIT=%%i
for /f "tokens=* USEBACKQ" %%i in (`python3 siliconcompiler/siliconcompiler/toolscripts/_tools.py --tool surelog --field git-url`) do set GITURL=%%i
for /f "tokens=* USEBACKQ" %%i in (`python3 siliconcompiler/siliconcompiler/toolscripts/_tools.py --tool surelog --field git-commit`) do set GITCOMMIT=%%i

mkdir build
cd build
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ markers = [
]
testpaths = "tests"
pythonpath = [
"siliconcompiler/setup"
"siliconcompiler/siliconcompiler/toolscripts"
]
2 changes: 1 addition & 1 deletion siliconcompiler
Submodule siliconcompiler updated 146 files