Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oc_jpegencode_vdt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
oc_jpegencode_vdt
Commits
58f4d78a
Commit
58f4d78a
authored
Sep 05, 2015
by
Chiggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert .travis back to master form
parent
c0abff1e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
35 deletions
+15
-35
.travis.sh
.travis.sh
+0
-22
.travis.yml
.travis.yml
+15
-13
No files found.
.travis.sh
deleted
100755 → 0
View file @
c0abff1e
#!/bin/bash
set
-ev
# Synthesis build
if
[
"
${
SYNTHESIS
}
"
=
"true"
]
;
then
wget https://www.dropbox.com/s/xvum1md2deppgre/quartus_14.0.tar.gz?dl
=
0
mv
quartus
*
quartus_14.0.tar.gz
tar
-zxf
quartus_14.0.tar.gz
cd
syn
&&
PATH
=
$PWD
/../altera/14.0/quartus/bin:
$PATH
make &
pid
=
$!
# Often no output so have to force output
while
kill
-0
$pid
>
/dev/null 2>&1
;
do
sleep
5m
;
echo
Build still running, honest
;
done
fi
# Simulation build
if
[
"
${
SIMULATION
}
"
=
"true"
]
;
then
git clone https://github.com/potentialventures/cocotb.git
export
COCOTB
=
$PWD
/cocotb
cd
tb
&&
make
fi
\ No newline at end of file
.travis.yml
View file @
58f4d78a
sudo
:
false
env
:
matrix
:
-
SYNTHESIS=true
-
SIMULATION=true
addons
:
apt
:
packages
:
-
python-imaging
-
iverilog
language
:
python
python
:
-
"
2.7"
before_install
:
-
sudo apt-get update -qq
-
sudo apt-get install -y python-imaging
-
sudo apt-get install -y iverilog
-
git clone https://github.com/potentialventures/cocotb.git
-
export COCOTB=$PWD/cocotb
install
:
-
pip install
--user
coverage
-
pip install
--user
coveralls
-
pip install coverage
-
pip install coveralls
script
:
-
./.travis.sh
-
cd tb && PYTHONPATH=/home/travis/virtualenv/python2.7.9/lib/python2.7/site-packages make COVERAGE=1
after_success
:
-
coveralls
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment