travis: Build all the SoCs (without gateware).
- TODO: Build the simulator SoC.
This commit is contained in:
parent
e65c121adf
commit
12bb3ebf7c
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -x
|
||||
set -e
|
||||
|
||||
source activate litex
|
||||
|
||||
SOC_FILES=$(find litex/boards/targets -name \*.py | grep -v sim | grep -v "__")
|
||||
|
||||
for SOC_FILE in $SOC_FILES; do
|
||||
SOC=$(echo $SOC_FILE | sed -e's/\.py$//' -e's-/-.-g')
|
||||
python -m $SOC --no-compile-gateware
|
||||
done
|
||||
|
||||
find soc_* | sort
|
|
@ -11,4 +11,4 @@ install:
|
|||
|
||||
script:
|
||||
- conda env create -f environment.yml
|
||||
- source activate litex
|
||||
- ./.travis-build-socs.sh
|
||||
|
|
Loading…
Reference in New Issue