diff options
author | gatecat <gatecat@ds0.me> | 2021-03-24 13:17:12 +0000 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2021-03-30 16:31:51 +0100 |
commit | b6b89593971bcddc874b3839dc5d107f975f1404 (patch) | |
tree | 845bdb10424accd29ac37a8dd86a486f1d1e4be1 /.github/ci | |
parent | 3cb5e81d50fb90c1fd1ffcd7af1a81c68e081646 (diff) | |
download | nextpnr-b6b89593971bcddc874b3839dc5d107f975f1404.tar.gz nextpnr-b6b89593971bcddc874b3839dc5d107f975f1404.tar.bz2 nextpnr-b6b89593971bcddc874b3839dc5d107f975f1404.zip |
interchange: Add Nexus to CI
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to '.github/ci')
-rwxr-xr-x | .github/ci/build_interchange.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/ci/build_interchange.sh b/.github/ci/build_interchange.sh index 1d2ee9dc..dedc01e2 100755 --- a/.github/ci/build_interchange.sh +++ b/.github/ci/build_interchange.sh @@ -40,6 +40,14 @@ function get_dependencies { pushd ${RAPIDWRIGHT_PATH} make update_jars popd + + # 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 + } function build_nextpnr { |