cpu/.gitlab-ci.yml

14 lines
264 B
YAML
Raw Normal View History

2021-07-02 02:33:02 -06:00
image: ubuntu
2021-07-03 18:48:07 -06:00
stages:
2021-07-02 02:19:17 -06:00
- build
2021-07-03 18:48:07 -06:00
build-job:
2021-07-02 02:19:17 -06:00
stage: build
script:
2021-07-03 18:52:26 -06:00
- echo "Installing dependencies..."
- apt update && apt install -y make iverilog gcc-8-riscv64-linux-gnu
2021-07-02 02:19:17 -06:00
- echo "Compiling the code..."
2021-07-03 18:48:07 -06:00
- make sim
2021-07-02 02:19:17 -06:00
- echo "Compile complete."