-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'upstream' into xfer-fw
- Loading branch information
Showing
130 changed files
with
4,832 additions
and
948 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
board-arty: ["targets/arty", "platforms/arty.py"] | ||
board-atlys: ["targets/atlys", "platforms/atlys.py"] | ||
board-basys3: ["targets/basys3", "platforms/basys3.py"] | ||
board-cmod_a7: ["targets/cmod_a7", "platforms/cmod_a7.py"] | ||
board-galatea: ["targets/galatea", "platforms/galatea.py"] | ||
board-mimasv2: ["targets/mimasv2", "platforms/mimasv2.py"] | ||
board-minispartan6: ["targets/minispartan6", "platforms/minispartan6.py"] | ||
board-neso: ["targets/neso", "platforms/neso.py"] | ||
board-netv2: ["targets/netv2", "platforms/netv2.py"] | ||
board-nexys-video: ["targets/nexys-video", "platforms/nexys-video.py"] | ||
board-opsis: ["targets/opsis", "platforms/opsis.py", "platforms/tofe_*.py"] | ||
board-pipistrello: ["targets/pipistrello", "platforms/pipistrello.py"] | ||
board-saturn: ["targets/saturn", "platforms/saturn.py"] | ||
board-sim: ["targets/sim", "platforms/sim.py"] | ||
board-waxwing: ["targets/waxwing", "platforms/waxwing.py"] | ||
boards-all: ["targets/common/"] | ||
boards-artix7: [ | ||
"targets/arty", "platforms/arty.py", | ||
"targets/basys3", "platforms/basys3.py", | ||
"targets/cmod_a7", "platforms/cmod_a7.py", | ||
"targets/neso", "platforms/neso.py", | ||
"targets/netv2", "platforms/netv2.py", | ||
"targets/nexys-video", "platforms/nexys-video.py" | ||
] | ||
boards-spartan6: [ | ||
"targets/atlys", "platforms/atlys.py", | ||
"targets/galatea", "platforms/galatea.py", | ||
"targets/mimasv2", "platforms/mimasv2.py", | ||
"targets/minispartan6", "platforms/minispartan6.py", | ||
"targets/opsis", "platforms/opsis.py", | ||
"targets/pipstrello", "platforms/pipstrello.py", | ||
"targets/saturn", "platforms/saturn.py", | ||
"targets/waxwing", "platforms/waxwing.py" | ||
] | ||
firmware-fpga: ["gateware/"] | ||
firmware-softcpu: ["firmware/"] | ||
hdmi2ethernet: ["targets/*/net.py", "targets/*/hdmi2eth.py", "firmware/uip/", "third_party/libuip/"] | ||
hdmi2usb: ["targets/*/hdmi2usb.py", "gateware/encoder/"] | ||
hdmi2***: ["targets/*/base.py"] | ||
level-docs: ["docs/", "README.md", "*.md"] | ||
level-firmware: ["gateware/", "firmware/"] | ||
level-infrastructure: [".travis.yml", ".travis/", "scripts/", ".github/"] | ||
level-software: ["software/"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ compiler: | |
sudo: false | ||
addons: | ||
apt: | ||
update: true | ||
packages: | ||
- build-essential | ||
- fxload | ||
|
@@ -26,6 +27,10 @@ env: | |
global: | ||
- HDMI2USB_UDEV_IGNORE=1 | ||
- CLEAN_CHECK=1 | ||
- PREBUILT_DIR="/tmp/HDMI2USB-firmware-prebuilt" | ||
# Travis reports incorrect the hosts number of processors, override to 2 | ||
# cores. | ||
- JOBS=2 | ||
|
||
before_install: | ||
- wget https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.zip -O /tmp/ninja.zip | ||
|
@@ -34,14 +39,18 @@ before_install: | |
- pip3 install --user meson | ||
|
||
install: | ||
- export CPU="$C" | ||
- export PLATFORMS="$P" | ||
- export TARGETS="$T" | ||
- export CPUS="$C" && echo "CPUS='$CPUS'" | ||
- export PLATFORMS="$P" && echo "PLATFORMS='$PLATFORMS'" | ||
- export TARGETS="$T" && echo "TARGETS='$TARGETS'" | ||
- export FIRMWARE="$F" && echo "FIRMWARE='$FIRMWARE'" | ||
- $PWD/.travis/setup.sh | ||
|
||
script: | ||
- $PWD/.travis/build.sh | ||
|
||
after_success: | ||
- $PWD/.travis/update-prebuilt-list.sh | ||
|
||
notifications: | ||
email: | ||
- [email protected] | ||
|
@@ -85,6 +94,24 @@ jobs: | |
- stage: Targets - Base | ||
env: C=lm32 P=pipistrello T="base" | ||
|
||
- stage: Targets - Base | ||
env: C=lm32 P=saturn T="base" | ||
|
||
- stage: Targets - Base | ||
env: C=lm32 P=galatea T="base" | ||
|
||
- stage: Targets - Base | ||
env: C=lm32 P=neso T="base" | ||
|
||
- stage: Targets - Base | ||
env: C=lm32 P=waxwing T="base" | ||
|
||
- stage: Targets - Base | ||
env: C=lm32 P=basys3 T="base" | ||
|
||
- stage: Targets - Base | ||
env: C=lm32 P=cmod_a7 T="base" | ||
|
||
# or1k base targets | ||
- stage: Targets - Base | ||
env: C=or1k P=arty T="base net" | ||
|
@@ -101,14 +128,19 @@ jobs: | |
- stage: Targets - Base | ||
env: C=or1k P=pipistrello T="base" | ||
|
||
# Linux Targets | ||
#-------------------------------------------- | ||
- stage: Targets - Base | ||
env: C=or1k.linux F=linux P=arty T="net" | ||
|
||
#-------------------------------------------- | ||
# Video Targets | ||
#-------------------------------------------- | ||
- stage: Targets - Video | ||
env: C=lm32 P=atlys T="video" | ||
|
||
- stage: Targets - Video | ||
env: C=lm32 P=netv2 T="video" | ||
#- stage: Targets - Video | ||
# env: C=lm32 P=netv2 T="video" | ||
|
||
- stage: Targets - Video | ||
env: C=lm32 P=nexys_video T="video" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.