From 71bc19c1a2c405dc9c815e5ff99fb4976987432b Mon Sep 17 00:00:00 2001 From: Lars Brinkhoff Date: Fri, 11 Dec 2020 09:48:52 +0100 Subject: [PATCH] CI build using GitHub Actions. --- .github/workflows/build.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..f55550f1 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,24 @@ +name: Build + +on: [push, pull_request] + +defaults: + run: + shell: bash + +jobs: + build: + runs-on: ${{matrix.os}} + strategy: + matrix: + os: [ubuntu-18.04] + emulator: [simh, klh10, pdp10-ka, pdp10-kl] + steps: + - uses: actions/checkout@v2 + - name: Install dependencies + env: + EMULATOR: ${{matrix.emulator}} + if: ${{runner.os == 'Linux'}} + run: sh -ex build/dependencies.sh install_linux + - name: Build + run: make check-dirs all EMULATOR=${{matrix.emulator}}