diff options
author | Miodrag Milanović <mmicko@gmail.com> | 2020-11-30 10:56:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-30 10:56:59 +0100 |
commit | 8b5c0dc1e49b692b0bb598a90034c27db653622d (patch) | |
tree | afd13c654df1faa0b5df9f11be74eede087fa564 /.cirrus | |
parent | 1afa494e69e3c8af3dd5d1685b9cd2b1d3bea4d0 (diff) | |
parent | 2fe8bebc6ce464afadef2403a8331031e16c5a5d (diff) | |
download | nextpnr-8b5c0dc1e49b692b0bb598a90034c27db653622d.tar.gz nextpnr-8b5c0dc1e49b692b0bb598a90034c27db653622d.tar.bz2 nextpnr-8b5c0dc1e49b692b0bb598a90034c27db653622d.zip |
Merge pull request #524 from daveshah1/nextpnr-nexus
Upstreaming basic support for Nexus devices
Diffstat (limited to '.cirrus')
-rw-r--r-- | .cirrus/Dockerfile.ubuntu16.04 | 12 | ||||
-rwxr-xr-x | .cirrus/archcheck.sh | 1 |
2 files changed, 12 insertions, 1 deletions
diff --git a/.cirrus/Dockerfile.ubuntu16.04 b/.cirrus/Dockerfile.ubuntu16.04 index 92ab2bae..a62cf4c6 100644 --- a/.cirrus/Dockerfile.ubuntu16.04 +++ b/.cirrus/Dockerfile.ubuntu16.04 @@ -9,7 +9,7 @@ RUN set -e -x ;\ build-essential autoconf cmake clang bison wget flex gperf \ libreadline-dev gawk tcl-dev libffi-dev graphviz xdot python3-dev \ libboost-all-dev qt5-default git libftdi-dev pkg-config libeigen3-dev \ - zlib1g-dev + zlib1g-dev curl RUN set -e -x ;\ mkdir -p /usr/local/src ;\ @@ -52,3 +52,13 @@ RUN set -e -x ;\ cmake . ;\ make -j $(nproc) ;\ make install + +RUN set -e -x ;\ + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y ;\ + mkdir -p /usr/local/src ;\ + cd /usr/local/src ;\ + git clone --recursive https://github.com/daveshah1/prjoxide.git ;\ + cd prjoxide ;\ + git reset --hard 72dbb7973f31a30c3b9d18f3bac97caaea9a7f33 ;\ + cd libprjoxide ;\ + PATH=$PATH:$HOME/.cargo/bin cargo install --path prjoxide diff --git a/.cirrus/archcheck.sh b/.cirrus/archcheck.sh index fde19216..35f115d0 100755 --- a/.cirrus/archcheck.sh +++ b/.cirrus/archcheck.sh @@ -4,3 +4,4 @@ echo "Running archcheck!" ${BUILD_DIR}/nextpnr-ice40 --hx8k --package ct256 --test ${BUILD_DIR}/nextpnr-ice40 --up5k --package sg48 --test ${BUILD_DIR}/nextpnr-ecp5 --um5g-25k --package CABGA381 --test +${BUILD_DIR}/nextpnr-nexus --device LIFCL-40-9BG400CES --test |