Skip to content

Make code size calculation for MIR more clear. #310

Make code size calculation for MIR more clear.

Make code size calculation for MIR more clear. #310

name: AMD64-Linux-OSX-Windows-test
on: [push, workflow_dispatch]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: make test
if: runner.os != 'Windows'
run: make test
- name: cmake test
if: runner.os == 'Windows'
run: |
cmake -A x64 -DBUILD_TESTING=ON
cmake --build . --config Release
ctest --verbose --output-on-failure