Files
super6502/.gitlab-ci.yml
2022-03-10 11:06:48 -06:00

40 lines
684 B
YAML

default:
tags:
- docker
build-sw:
stage: build
image: bslathi19/cc65-pipeline
script:
- cd sw/
- make
build-fpga:
stage: build
image: bslathi19/modelsim_18.1:lite
script:
- cd hw/fpga/
- quartus_map super6502 -c super6502
test_addr_decode:
stage: test
image: bslathi19/modelsim_18.1:lite
script:
- cd hw/fpga/simulation/modelsim/
- vsim -do "do cs_testbench.do"
test_bb_spi:
stage: test
image: bslathi19/modelsim_18.1:lite
script:
- cd hw/fpga/simulation/modelsim/
- vsim -do "do bb_spi_testbench.do"
test-sw:
stage: test
image: bslathi19/cc65-pipeline
script:
- cd sw/
- make test