2022-02-27 09:27:49 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-03-19 23:36:21 -04:00
|
|
|
# Copyright (C) 2020-2022 F4PGA Authors.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2022-02-27 09:27:49 -05:00
|
|
|
|
2022-07-27 17:17:16 -04:00
|
|
|
set -e
|
|
|
|
|
2022-02-27 09:27:49 -05:00
|
|
|
echo '::group::Install dependencies'
|
|
|
|
sudo apt update -y
|
|
|
|
sudo apt install -y git wget xz-utils
|
|
|
|
echo '::endgroup::'
|
|
|
|
|
|
|
|
|
|
|
|
echo '::group::Clone f4pga-examples'
|
|
|
|
git clone --recurse-submodules https://github.com/chipsalliance/f4pga-examples
|
|
|
|
cd f4pga-examples
|
|
|
|
echo '::endgroup::'
|
|
|
|
|
|
|
|
|
2022-06-08 05:04:27 -04:00
|
|
|
FPGA_FAM=${FPGA_FAM:=xc7}
|
2022-02-27 09:27:49 -05:00
|
|
|
|
|
|
|
echo '::group::Install Miniconda3'
|
|
|
|
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O conda_installer.sh
|
|
|
|
|
2022-06-08 05:04:27 -04:00
|
|
|
F4PGA_INSTALL_DIR_FAM="$F4PGA_INSTALL_DIR/$FPGA_FAM"
|
2022-02-27 09:27:49 -05:00
|
|
|
|
|
|
|
bash conda_installer.sh -u -b -p "$F4PGA_INSTALL_DIR_FAM"/conda
|
|
|
|
source "$F4PGA_INSTALL_DIR_FAM"/conda/etc/profile.d/conda.sh
|
|
|
|
echo '::endgroup::'
|
|
|
|
|
|
|
|
|
|
|
|
echo '::group::Create environment'
|
2022-06-08 05:04:27 -04:00
|
|
|
conda env create -f "$FPGA_FAM"/environment.yml
|
2022-02-27 09:27:49 -05:00
|
|
|
echo '::endgroup::'
|
|
|
|
|
|
|
|
|
|
|
|
echo '::group::Install arch-defs'
|
2022-06-08 05:04:27 -04:00
|
|
|
case "$FPGA_FAM" in
|
2022-02-27 09:27:49 -05:00
|
|
|
xc7)
|
|
|
|
mkdir -p "$F4PGA_INSTALL_DIR_FAM"/install
|
2022-07-27 16:49:16 -04:00
|
|
|
F4PGA_TIMESTAMP='20220714-173445'
|
|
|
|
F4PGA_HASH='f7afc12'
|
|
|
|
for PKG in install 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/xc7/install
|
|
|
|
done
|
2022-02-27 09:27:49 -05:00
|
|
|
;;
|
|
|
|
eos-s3)
|
2022-05-24 08:38:00 -04:00
|
|
|
wget -qO- https://storage.googleapis.com/symbiflow-arch-defs-install/quicklogic-arch-defs-qlf-fc5d8da.tar.gz | tar -xz -C $F4PGA_INSTALL_DIR_FAM
|
2022-02-27 09:27:49 -05:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
echo '::endgroup::'
|
2022-03-19 21:28:04 -04:00
|
|
|
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
|
2022-03-19 21:34:36 -04:00
|
|
|
echo '::group::Add f4pga-env'
|
2022-07-28 05:56:41 -04:00
|
|
|
|
|
|
|
F4PGA_DIR_ROOT='install'
|
|
|
|
|
2022-03-19 21:28:04 -04:00
|
|
|
F4PGA_DIR_BIN="$F4PGA_INSTALL_DIR_FAM/$F4PGA_DIR_ROOT"/bin/
|
2022-07-27 16:49:16 -04:00
|
|
|
mkdir -p "$F4PGA_DIR_BIN"
|
2022-03-19 21:28:04 -04:00
|
|
|
cp $(dirname "$0")/../../f4pga-env "$F4PGA_DIR_BIN"
|
2022-03-19 21:34:36 -04:00
|
|
|
echo '::endgroup::'
|
|
|
|
|
|
|
|
|
2022-03-19 21:28:04 -04:00
|
|
|
cd "$F4PGA_DIR_BIN"
|
2022-07-27 16:49:16 -04:00
|
|
|
ls -lah
|
|
|
|
|