mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 21:39:10 -04:00
minor update
This commit is contained in:
parent
bb47a14388
commit
7f61f0b015
1 changed files with 2 additions and 12 deletions
14
.travis.yml
14
.travis.yml
|
@ -30,10 +30,10 @@ install:
|
|||
popd;
|
||||
echo "v0" > "$TOOLDIR/version.txt";
|
||||
fi
|
||||
- if [ ! -d "$HOME/third_party" ] || [ -z "$(ls -A $HOME/third_party)" ] || [ "$(cat "$HOME/third_party/version.txt")" != "v0" ]; then
|
||||
- if [ ! -d "$HOME/third_party" ] || [ -z "$(ls -A $HOME/third_party)" ] || [ "$(cat "$HOME/third_party/version.txt")" != "v1" ]; then
|
||||
make -C third_party > /dev/null;
|
||||
cp -r third_party $HOME;
|
||||
echo "v0" > "$HOME/third_party/version.txt";
|
||||
echo "v1" > "$HOME/third_party/version.txt";
|
||||
else
|
||||
cp -r $HOME/third_party .;
|
||||
fi
|
||||
|
@ -123,13 +123,3 @@ jobs:
|
|||
name: synthesis64
|
||||
env: XLEN=3264
|
||||
script: cp -r $HOME/build$XLEN build && cd build && ./ci/travis_run.py ./ci/regression.sh --synthesis
|
||||
|
||||
after_success:
|
||||
# Gather code coverage
|
||||
- lcov --directory runtime --capture --output-file runtime.cov # capture trace
|
||||
- lcov --directory sim --capture --output-file sim.cov # capture trace
|
||||
- lcov --list runtime.cov # output coverage data for debugging
|
||||
- lcov --list sim.cov # output coverage data for debugging
|
||||
# Upload coverage report
|
||||
- bash <(curl -s https://codecov.io/bash) -f runtime.cov
|
||||
- bash <(curl -s https://codecov.io/bash) -f sim.cov
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue