Update .travis.yml

This commit is contained in:
tinebp
2020-08-25 07:35:15 -04:00
committed by GitHub
parent cb8d237c19
commit 0f0621a4b0

View File

@@ -1,7 +1,7 @@
language: cpp language: cpp
compiler: gcc
dist: focal dist: focal
os: linux
compiler: gcc
addons: addons:
apt: apt:
sources: sources:
@@ -9,26 +9,13 @@ addons:
packages: packages:
- build-essential - build-essential
- valgrind - valgrind
- autoconf
- automake
- autotools-dev
- lcov
- bison
- flex
- texinfo
- verilator - verilator
- yosys - yosys
install: install:
# RISCV_TOOLCHAIN # RISCV_TOOLCHAIN
- export RISCV_TOOLCHAIN_PATH=/opt/riscv-gnu-toolchain - export RISCV_TOOLCHAIN_PATH=$PWD/riscv-gnu-toolchain/drops
- sudo apt-get -y install \ - sudo apt-get -y install binutils build-essential libtool texinfo gzip zip unzip patchutils curl git make cmake ninja-build automake bison flex gperf grep sed gawk python bc zlib1g-dev libexpat1-dev libmpc-dev libglib2.0-dev libfdt-dev libpixman-1-dev
binutils build-essential libtool texinfo \
gzip zip unzip patchutils curl git \
make cmake ninja-build automake bison flex gperf \
grep sed gawk python bc \
zlib1g-dev libexpat1-dev libmpc-dev \
libglib2.0-dev libfdt-dev libpixman-1-dev
- git clone https://github.com/riscv/riscv-gnu-toolchain - git clone https://github.com/riscv/riscv-gnu-toolchain
- cd riscv-gnu-toolchain - cd riscv-gnu-toolchain
- git submodule update --init --recursive - git submodule update --init --recursive
@@ -42,8 +29,8 @@ install:
- git clone --recursive https://github.com/vortexgpgpu/vortex.git - git clone --recursive https://github.com/vortexgpgpu/vortex.git
- cd Vortex - cd Vortex
- make - make
- make -C /Vortex/benchmarks/opencl/sgemm - make -C benchmarks/opencl/sgemm
- make -C /Vortex/benchmarks/opencl/sgemm run - make -C benchmarks/opencl/sgemm run
script: script:
- ci/regression.sh .. - ci/regression.sh ..