blob: 29e6cdc953a2556068040432c507fc65d8c8d69f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
name: macos_ci
on: [push, pull_request]
jobs:
build-native:
strategy:
matrix:
os: [macos-latest]
compiler: [clang, gcc]
runs-on: ${{ matrix.os }}
continue-on-error: false
env:
CC: ${{ matrix.compiler }}
ARCH: native
name: ${{ matrix.compiler }} - ${{ matrix.os }}
steps:
- name: Install packages for macos
run: brew install automake
- uses: actions/checkout@v2
- name: Run CI script
run: ./scripts/test
|