aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-03-31 10:11:09 +0100
committergatecat <gatecat@ds0.me>2021-03-31 10:11:09 +0100
commit3678eff5dc13b301f7841d2079ba265bbe3fac2b (patch)
tree2089f24d685263e5b8c8a47e29098c78f6940c0c /.github
parent9259763599badeb7352b3179e7019582274a1b4b (diff)
downloadnextpnr-3678eff5dc13b301f7841d2079ba265bbe3fac2b.tar.gz
nextpnr-3678eff5dc13b301f7841d2079ba265bbe3fac2b.tar.bz2
nextpnr-3678eff5dc13b301f7841d2079ba265bbe3fac2b.zip
interchange: Fix nexus cmake review comments
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to '.github')
-rwxr-xr-x.github/ci/build_interchange.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/ci/build_interchange.sh b/.github/ci/build_interchange.sh
index 56fd3d57..dc839e93 100755
--- a/.github/ci/build_interchange.sh
+++ b/.github/ci/build_interchange.sh
@@ -35,19 +35,19 @@ function get_dependencies {
python3 -m pip install -r requirements.txt
popd
- ## Install RapidWright
- git clone https://github.com/Xilinx/RapidWright.git ${RAPIDWRIGHT_PATH}
- pushd ${RAPIDWRIGHT_PATH}
- make update_jars
- popd
-
- # Install prjoxide
if [ ${DEVICE} == "LIFCL-17" ]; then
+ # Install prjoxide
curl --proto '=https' -sSf https://sh.rustup.rs | sh -s -- -y
git clone --recursive https://github.com/gatecat/prjoxide.git
pushd prjoxide/libprjoxide
PATH=$PATH:$HOME/.cargo/bin cargo install --path prjoxide --all-features
popd
+ else
+ # Install RapidWright
+ git clone https://github.com/Xilinx/RapidWright.git ${RAPIDWRIGHT_PATH}
+ pushd ${RAPIDWRIGHT_PATH}
+ make update_jars
+ popd
fi
}