1
0
mirror of https://github.com/PDP-10/its.git synced 2026-03-27 10:30:50 +00:00
Files
PDP-10.its/.gitlab-ci.yml
Lars Brinkhoff 0a6c737869 Multiple targets for the GitLab build.
It now builds with SIMH KS10 and KA10; the latter both KA ITS and KL ITS.
2019-07-02 15:09:08 +02:00

40 lines
605 B
YAML

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