ci/prepare_environment: update arch-def packages (#591)

Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
This commit is contained in:
Unai Martinez-Corral 2022-07-31 11:58:37 +02:00 committed by GitHub
parent 4f24d2ac04
commit 8c411eb74e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -51,15 +51,15 @@ echo '::group::Install arch-defs'
mkdir -p "$F4PGA_INSTALL_DIR_FAM"/install
case "$FPGA_FAM" in
xc7)
F4PGA_TIMESTAMP='20220714-173445'
F4PGA_HASH='f7afc12'
for PKG in install xc7a50t_test; do
F4PGA_TIMESTAMP='20220729-181657'
F4PGA_HASH='7833050'
for PKG in install-xc7 xc7a50t_test; do
wget -qO- https://storage.googleapis.com/symbiflow-arch-defs/artifacts/prod/foss-fpga-tools/symbiflow-arch-defs/continuous/install/${F4PGA_TIMESTAMP}/symbiflow-arch-defs-${PKG}-${F4PGA_HASH}.tar.xz | tar -xJC $F4PGA_INSTALL_DIR/$FPGA_FAM/install
done
;;
eos-s3)
F4PGA_TIMESTAMP='yyyymmdd-hhmmss' #FIXME: placeholder timestamp
F4PGA_HASH='deadbee' #FIXME: placeholder hash
F4PGA_TIMESTAMP='20220729-181657'
F4PGA_HASH='7833050'
for PKG in install-ql ql-eos-s3_wlcsp; do
wget -qO- https://storage.googleapis.com/symbiflow-arch-defs/artifacts/prod/foss-fpga-tools/symbiflow-arch-defs/continuous/install/${F4PGA_TIMESTAMP}/symbiflow-arch-defs-${PKG}-${F4PGA_HASH}.tar.xz | tar -xJC $F4PGA_INSTALL_DIR/$FPGA_FAM/install
done