Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TEST] CI env dump #541

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ include third_party/make-env/conda.mk

env:: | $(CONDA_ENV_PYTHON)
$(IN_CONDA_ENV) conda list
find . -iname "*tbb*"

install_f4pga: | $(CONDA_ENV_PYTHON)
mkdir -p env/f4pga
Expand All @@ -67,11 +68,15 @@ install_f4pga: | $(CONDA_ENV_PYTHON)
install_interchange:
mkdir -p env/interchange/devices
TECHMAP_DATA_URL=$$(curl -fsSL ${INTERCHANGE_RELEASES_URL}/interchange-techmaps-latest); \
echo "FPGA Interchange techmaps URL: $${TECHMAP_DATA_URL}"; \
curl -fsSL $${TECHMAP_DATA_URL} | tar -xJC env/interchange; \
for device in ${INTERCHANGE_DEVICES}; do \
DEVICE_DATA_URL=$$(curl -fsSL ${INTERCHANGE_RELEASES_URL}/interchange-$${device}-latest); \
echo "FPGA Interchange $${device} data URL: $${DEVICE_DATA_URL}"; \
curl -fsSL $${DEVICE_DATA_URL} | tar -xJC env/interchange/devices; \
done
@echo "FPGA Interchange device data MD5 checksums:"
@find env/interchange/devices -type f | xargs md5sum
make install_rapidwright

install_rapidwright:
Expand Down