Skip to content

Fixed a bug in some illegal opcodes. #6

Fixed a bug in some illegal opcodes.

Fixed a bug in some illegal opcodes. #6

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
matrix:
include:
- { os: ubuntu-latest, compiler: gcc, cc: gcc, cxx: g++ }
- { os: ubuntu-latest, compiler: clang, cc: clang, cxx: clang++ }
- { os: macos-latest, compiler: clang, cc: clang, cxx: clang++ }
name: ${{ matrix.os }} / ${{ matrix.compiler }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- name: Configure
run: cmake --preset default
env:
CC: ${{ matrix.cc }}
CXX: ${{ matrix.cxx }}
- name: Build
run: cmake --build --preset default