Files
openlibm/.github/workflows/ci.yml
T
Viral B. Shah a2e053ee1f Revert "Update ci.yml"
This reverts commit 4a52bb0dcc.
2021-09-08 20:27:54 -04:00

40 lines
705 B
YAML

name: OpenLibm CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
arch:
- x64
- x32
- armv7
- aarch64
steps:
- uses: actions/checkout@v2
- run: make
- run: make test
buildwindows:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
install: make mingw-w64-x86_64-toolchain
- run: make
- run: make test