| oscope_top_test: |
| extends: .build-matrix |
| image: $IMAGE |
| before_script: |
| - cd projects/oscope/bmb7_cu |
| stage: test |
| script: |
| - make Voscope_top_tb && make Voscope_top_leep && make clean |
|
|
| |
| |
| |
| oscope_cdc: |
| extends: .build-matrix |
| image: $IMAGE |
| before_script: |
| - cd projects/oscope/marble_family |
| stage: test |
| script: |
| - make dep && make oscope_prep_yosys.json && (make oscope_prep_cdc.txt || echo "Found CDC violation, as expected; continuing") |
| artifacts: |
| expire_in: 1 week |
| paths: |
| - projects/oscope/marble_family/oscope_prep_cdc.txt |
|
|
| oscope_top_bmb7: |
| extends: .build-matrix |
| image: $IMAGE |
| before_script: |
| - cd projects/oscope/bmb7_cu && ls /non-free |
| stage: synthesis |
| script: |
| - verilator -V && XILINX_VIVADO=$XILINX_VIVADO PATH=$XILINX_VIVADO/bin:$PATH make oscope_top.bit |
| artifacts: |
| name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME" |
| expire_in: 1 week |
| paths: |
| - projects/oscope/bmb7_cu/oscope_top.bit |
|
|
| oscope_top_marble: |
| extends: .build-matrix |
| image: $IMAGE |
| before_script: |
| - cd projects/oscope/marble_family && ls /non-free |
| stage: synthesis |
| script: |
| - verilator -V && XILINX_VIVADO=$XILINX_VIVADO PATH=$XILINX_VIVADO/bin:$PATH make oscope_top.bit |
| artifacts: |
| name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME" |
| expire_in: 1 week |
| paths: |
| - projects/oscope/marble_family/oscope_top.bit |
|
|
| |
| marble_ddr3_test: |
| extends: .build-matrix |
| image: $IMAGE |
| stage: synthesis |
| before_script: |
| - cd $LITEX_INSTALL_PATH/litex-boards/litex_boards/targets |
| script: |
| - XILINXD_LICENSE_FILE=$XILINXD_LICENSE_FILE PATH=$XILINX_VIVADO/bin:$PATH && python3 berkeleylab_marble.py --build |
| - echo $CI_PROJECT_DIR |
| - cp $LITEX_INSTALL_PATH/litex-boards/litex_boards/targets/build/berkeleylab_marble/gateware/berkeleylab_marble.bit $CI_PROJECT_DIR/ |
| artifacts: |
| name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME" |
| expire_in: 1 week |
| when: always |
| paths: |
| - berkeleylab_marble.bit |
|
|
| litex_trigger_capture: |
| extends: .build-matrix |
| image: $IMAGE |
| stage: synthesis |
| before_script: |
| - cd projects/trigger_capture |
| script: |
| XILINXD_LICENSE_FILE=$XILINXD_LICENSE_FILE PATH=$XILINX_VIVADO/bin:$PATH && make marble.bit |
| artifacts: |
| name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME" |
| expire_in: 1 week |
| when: always |
| paths: |
| - projects/trigger_capture/build/marble/gateware/marble.bit |
| - projects/trigger_capture/csr.csv |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|