mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-22 03:01:31 +03:00
b2ce91fec4
The latest Github Actions windows image contains msys2 so use that. Also use gcc that comes with the image to save downloading clang. Skip Racket as it's slow enough already.
29 lines
656 B
YAML
29 lines
656 B
YAML
name: macOS
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
tags:
|
|
- '*'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
env:
|
|
SCHEME: chez
|
|
jobs:
|
|
build:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Install build dependencies
|
|
run: |
|
|
brew install chezscheme
|
|
brew install coreutils
|
|
echo "::add-path::$HOME/.idris2/bin"
|
|
- name: Build and test Idris 2 from bootstrap
|
|
run: make bootstrap && make install
|
|
shell: bash
|
|
- name: Build and test self-hosted
|
|
run: make clean && make all && make test INTERACTIVE=''
|
|
shell: bash |