mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-01 14:22:27 +00:00
Homebrew on the macOS build machines for GitHub Actions was updated to version 2.7 and that deprecated the `brew cask install` syntax in favor of `brew install --cask`, so we need to update here. The announcement for the GitHub change is: https://github.com/actions/virtual-environments/issues/2415
31 lines
612 B
YAML
31 lines
612 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]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build
|
|
working-directory: bin
|
|
run: ./makeright x
|