Skip to content

Commit 5d4ac57

Browse files
authored
Merge pull request #4 from litghost/routing_tree
Add routing tree and route stitch support.
2 parents a12c04e + 2e50ece commit 5d4ac57

File tree

7 files changed

+1430
-11
lines changed

7 files changed

+1430
-11
lines changed

.travis.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,13 @@ jobs:
1717
include:
1818
- name: "Python Tests"
1919
script:
20-
- git clone -b interchange https://github.com/Xilinx/RapidWright.git
21-
- git clone https://github.com/capnproto/capnproto-java.git
22-
- CAPNP_PATH=$(pwd)/capnproto-java/compiler/src/main/schema/ INTERCHANGE_SCHEMA_PATH=$(pwd)/RapidWright/interchange make test-py
20+
- git clone -b interchange https://github.com/Xilinx/RapidWright.git $HOME/RapidWright
21+
# Build RapidWright and create the device resource for the test part.
22+
- make -C $HOME/RapidWright update_jars
23+
- pushd $HOME && RAPIDWRIGHT_PATH=$HOME/RapidWright $HOME/RapidWright/scripts/invoke_rapidwright.sh com.xilinx.rapidwright.interchange.DeviceResourcesExample xc7a50tfgg484-1 && popd
24+
- git clone https://github.com/capnproto/capnproto-java.git $HOME/capnproto-java
25+
- CAPNP_PATH=$HOME/capnproto-java/compiler/src/main/schema/ INTERCHANGE_SCHEMA_PATH=$HOME/RapidWright/interchange DEVICE_RESOURCE_PATH=$HOME make test-py
26+
- test $(git status --porcelain | wc -l) -eq 0 || { git diff; false; }
2327
- name: "Check Formatting"
2428
script:
2529
- make format

0 commit comments

Comments
 (0)