Update .gitlab-ci.yml file

This commit is contained in:
Byron Lathi
2022-04-19 20:30:27 +00:00
parent 7b84d8a9c2
commit c7ff69a1a0

View File

@@ -2,15 +2,20 @@ default:
tags: tags:
- docker - docker
stages:
- build_sw
- build_hw
- test
build-kernel: build-kernel:
stage: build stage: build_sw
image: a2geek/cc65-pipeline image: a2geek/cc65-pipeline
script: script:
- cd sw/kernel - cd sw/kernel
- make - make
build-bootloader: build-bootloader:
stage: build stage: build_sw
image: a2geek/cc65-pipeline image: a2geek/cc65-pipeline
script: script:
- cd sw/bootloader - cd sw/bootloader
@@ -23,7 +28,7 @@ build-bootloader:
build-fpga: build-fpga:
stage: build stage: build_hw
dependencies: dependencies:
- build-bootloader - build-bootloader
image: bslathi19/modelsim_18.1:lite image: bslathi19/modelsim_18.1:lite