26 lines
410 B
YAML
26 lines
410 B
YAML
image: gcc
|
|
|
|
stages:
|
|
- build
|
|
- simple-runs
|
|
|
|
cache:
|
|
paths:
|
|
- build/
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- git submodule sync
|
|
- git submodule update --init --recursive
|
|
- mkdir -p build
|
|
- cd build
|
|
- qmake ../DRAMSys/DRAMSys.pro
|
|
- make -j4
|
|
|
|
check-for-crash:
|
|
stage: simple-runs
|
|
script:
|
|
- cd build/simulator
|
|
- ./DRAMSys
|