Skip to content

Commit 031f69d

Browse files
committed
minor update
1 parent 7e4632f commit 031f69d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/nightly_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- {test: "vtr_reg_strong", cores: "16", options: "", cmake: "-DVTR_ASSERT_LEVEL=3", extra_pkgs: "libeigen3-dev"}
6666
- {test: "vtr_reg_strong_odin", cores: "16", options: "", cmake: "-DVTR_ASSERT_LEVEL=3 -DWITH_ODIN=ON", extra_pkgs: "libeigen3-dev"}
6767
- {test: "vtr_reg_strong_odin", cores: "16", options: "-skip_qor", cmake: "-DVTR_ASSERT_LEVEL=3 -DVTR_ENABLE_SANITIZE=ON -DWITH_ODIN=ON", extra_pkgs: "libeigen3-dev"}
68-
- {test: "vtr_reg_system_verilog", cores: "16", options: "", cmake: "-DYOSYS_F4PGA_PLUGINS=ON", extra_pkgs: ""} # Test turned off -> F4PGA conflicts with Yosys (version 42)
68+
#- {test: "vtr_reg_system_verilog", cores: "16", options: "", cmake: "-DYOSYS_F4PGA_PLUGINS=ON", extra_pkgs: ""} # Test turned off -> F4PGA conflicts with Yosys (version 42)
6969
- {test: "odin_reg_strong", cores: "16", options: "", cmake: "-DWITH_ODIN=ON", extra_pkgs: ""}
7070
- {test: "parmys_reg_strong", cores: "16", options: "", cmake: "-DYOSYS_F4PGA_PLUGINS=OFF", extra_pkgs: ""}
7171

libs/EXTERNAL/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ set(SURELOG_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/Surelog)
8585
SOURCE_DIR "${SYNLIG_SOURCE_DIR}"
8686
BUILD_IN_SOURCE FALSE
8787
INSTALL_DIR " "
88-
88+
8989
# Sync submodules after cloning
90-
UPDATE_COMMAND git submodule update --init --recursive third_party/surelog
90+
UPDATE_COMMAND git submodule sync && git submodule update --init --recursive third_party/surelog
9191
WORKING_DIRECTORY ${SYNLIG_SOURCE_DIR}
9292

9393

vtr_flow/scripts/python_libs/vtr/parmys/parmys.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def run(
235235
# Set the synlig exe script path in the environment variable(handle if it is not set or system-verilog OFF)
236236
try:
237237
os.environ["synlig_exe_path"] = str(vtr.paths.synlig_exe_path)
238-
except KeyError as key_error:
238+
except KeyError:
239239
os.environ["synlig_exe_path"] = "/dummy/path"
240240

241241
# set the parser

0 commit comments

Comments
 (0)