From b9b2de324c1c563142ea43af28da28a99fe6640b Mon Sep 17 00:00:00 2001 From: Lars Brinkhoff Date: Tue, 2 Jul 2019 05:57:59 +0200 Subject: [PATCH] Multiple targets for the GitLab build. It now builds with SIMH KS10 and KA10; the latter both KA ITS and KL ITS. --- .gitlab-ci.yml | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c076bc42..87a28ec7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,16 +1,39 @@ image: ubuntu -variables: - EMULATOR: pdp10-ka - 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/