Skip to content

Commit 561b164

Browse files
committed
Revert "Makefile: temporarily pin arch-defs packages"
This reverts commit d7d5aa1.
1 parent 981253f commit 561b164

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ env:: | $(CONDA_ENV_PYTHON)
5252

5353
install_f4pga: | $(CONDA_ENV_PYTHON)
5454
mkdir -p env/f4pga
55-
curl -fsSL https://storage.googleapis.com/symbiflow-arch-defs/artifacts/prod/foss-fpga-tools/symbiflow-arch-defs/continuous/install/20220901-121844/symbiflow-arch-defs-install-xc7-75e2533.tar.xz | tar -xJC env/f4pga
55+
curl -fsSL ${F4PGA_LATEST_URL} | xargs curl -fsSL | tar -xJC env/f4pga
5656
# Adapt the environment file from f4pga-arch-defs
5757
test -e env/f4pga/xc7_env/xc7_environment.yml && \
5858
sed -i 's/name: xc7/name: f4pga-env/g' env/f4pga/xc7_env/xc7_environment.yml
@@ -62,7 +62,7 @@ install_f4pga: | $(CONDA_ENV_PYTHON)
6262
@$(CONDA_ACTIVATE) f4pga-env && conda list
6363
# Install all devices
6464
for device in ${F4PGA_DEVICES}; do \
65-
curl -fsSL https://storage.googleapis.com/symbiflow-arch-defs/artifacts/prod/foss-fpga-tools/symbiflow-arch-defs/continuous/install/20220901-121844/symbiflow-arch-defs-$${device}_test-75e2533.tar.xz | tar -xJC env/f4pga; \
65+
curl -fsSL ${F4PGA_LATEST_URL_BASE}/symbiflow-$${device}_test-latest | xargs curl -fsSL | tar -xJC env/f4pga; \
6666
done
6767

6868
install_interchange:

0 commit comments

Comments
 (0)