diff options
author | gatecat <gatecat@ds0.me> | 2022-03-17 20:01:44 +0000 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2022-03-17 20:01:44 +0000 |
commit | 29654c52be93df192ce3191b39e2d4ae57120d08 (patch) | |
tree | f6f89178f844653cb0a97092429447f0a308153e /.github/ci | |
parent | 14d53dfec8dba93996f5c2877d60f6ed167d14fb (diff) | |
download | nextpnr-29654c52be93df192ce3191b39e2d4ae57120d08.tar.gz nextpnr-29654c52be93df192ce3191b39e2d4ae57120d08.tar.bz2 nextpnr-29654c52be93df192ce3191b39e2d4ae57120d08.zip |
ci: Fixes for latest RapidWright
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to '.github/ci')
-rwxr-xr-x | .github/ci/build_interchange.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/ci/build_interchange.sh b/.github/ci/build_interchange.sh index 674bd5c1..3976ce4e 100755 --- a/.github/ci/build_interchange.sh +++ b/.github/ci/build_interchange.sh @@ -48,7 +48,8 @@ function get_dependencies { # Install RapidWright git clone https://github.com/Xilinx/RapidWright.git ${RAPIDWRIGHT_PATH} pushd ${RAPIDWRIGHT_PATH} - make update_jars + ./gradlew updateJars --no-watch-fs + make compile popd fi } |