1
0
mirror of https://github.com/PDP-10/its.git synced 2026-01-11 23:53:12 +00:00
PDP-10.its/.gitlab-ci.yml
2019-08-14 22:22:59 +02:00

40 lines
623 B
YAML

image: ubuntu
stages:
- build
# Note, GitLab currently does not build well with KLH10.
build_simh:
stage: build
variables:
EMULATOR: simh
script:
- sh -ex build/dependencies.sh install_linux
- make
artifacts:
paths:
- out/simh/
build_ka10:
stage: build
variables:
EMULATOR: pdp10-ka
script:
- sh -ex build/dependencies.sh install_linux
- make
artifacts:
paths:
- out/pdp10-ka/
build_kl10:
stage: build
variables:
EMULATOR: pdp10-kl
script:
- sh -ex build/dependencies.sh install_linux
- make
artifacts:
paths:
- out/pdp10-kl/