Skip to content

Commit

Permalink
add files (apache#6986)
Browse files Browse the repository at this point in the history
  • Loading branch information
vegaluisjose authored and trevor-m committed Dec 4, 2020
1 parent 1339b51 commit 2a13d86
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 14 deletions.
8 changes: 6 additions & 2 deletions docker/Dockerfile.ci_cpu
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,12 @@ COPY install/ubuntu_install_universal.sh /install/ubuntu_install_universal.sh
RUN bash /install/ubuntu_install_universal.sh

# Chisel deps for TSIM
COPY install/ubuntu_install_chisel.sh /install/ubuntu_install_chisel.sh
RUN bash /install/ubuntu_install_chisel.sh
COPY install/ubuntu_install_sbt.sh /install/ubuntu_install_sbt.sh
RUN bash /install/ubuntu_install_sbt.sh

# Verilator deps
COPY install/ubuntu_install_verilator.sh /install/ubuntu_install_verilator.sh
RUN bash /install/ubuntu_install_verilator.sh

# TFLite deps
COPY install/ubuntu_install_tflite.sh /install/ubuntu_install_tflite.sh
Expand Down
8 changes: 6 additions & 2 deletions docker/Dockerfile.ci_i386
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,9 @@ COPY install/ubuntu_install_redis.sh /install/ubuntu_install_redis.sh
RUN bash /install/ubuntu_install_redis.sh

# Chisel deps for TSIM
COPY install/ubuntu_install_chisel.sh /install/ubuntu_install_chisel.sh
RUN bash /install/ubuntu_install_chisel.sh
COPY install/ubuntu_install_sbt.sh /install/ubuntu_install_sbt.sh
RUN bash /install/ubuntu_install_sbt.sh

# Verilator deps
COPY install/ubuntu_install_verilator.sh /install/ubuntu_install_verilator.sh
RUN bash /install/ubuntu_install_verilator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,12 @@ set -o pipefail

# The https:// source added below required an apt https transport
# support.
apt-get update && apt-get install -y apt-transport-https flex bison
apt-get update && apt-get install -y apt-transport-https

# Install the necessary dependencies for Chisel
# Install the necessary dependencies for sbt
echo "deb https://dl.bintray.com/sbt/debian /" | tee -a /etc/apt/sources.list.d/sbt.list
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823

# Note: The settings in vta/hardware/chisel/project/build.properties
# file determines required sbt version.
apt-get update && apt-get install -y sbt=1.1.1

# Install the Verilator with major version 4.0
wget https://www.veripool.org/ftp/verilator-4.010.tgz
tar xf verilator-4.010.tgz
cd verilator-4.010/
./configure
make -j4
make install
36 changes: 36 additions & 0 deletions docker/install/ubuntu_install_verilator.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/bin/bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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
#
# http://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.

set -e
set -u
set -o pipefail

# Verilator version
version="4.104"

# Install dependencies
apt-get update && apt-get install -y autoconf g++ flex bison

# Install Verilator
wget "https://github.com/verilator/verilator/archive/v$version.tar.gz"
tar xf "v$version.tar.gz"
cd "verilator-$version"
autoconf
./configure
make -j4
make install

0 comments on commit 2a13d86

Please sign in to comment.