mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-22 02:15:28 +00:00
The build-pi builder is self-hosted, so it may not be present, and isn't present in forks of this repo, making the CI less useful.
32 lines
666 B
YAML
32 lines
666 B
YAML
name: Build
|
|
|
|
on: [push, pull_request]
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [macos-10.15, ubuntu-18.04]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install X11 dependencies on MacOS
|
|
if: ${{ runner.os == 'macOS'}}
|
|
run: brew install --cask xquartz
|
|
- name: Build
|
|
working-directory: bin
|
|
run: ./makeright x
|
|
|
|
build-pi:
|
|
runs-on: [self-hosted, linux, ARM]
|
|
if: ${{ github.repository == 'Interlisp/maiko' }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build
|
|
working-directory: bin
|
|
run: ./makeright x
|