This repository has been archived by the owner on Mar 12, 2024. It is now read-only.
backend/rv64: Add stub implementations for FPMulSub #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: multiarch | |
on: [ push, pull_request ] | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
runs-on: macos-latest | |
steps: | |
- name: Install build dependencies | |
run: | | |
brew install ninja | |
echo "/usr/local/opt/llvm/bin" >> $GITHUB_PATH | |
- name: Checkout dynarmic repo | |
uses: actions/checkout@v2 | |
- name: Checkout ext-boost repo | |
uses: actions/checkout@v2 | |
with: | |
repository: MerryMage/ext-boost | |
path: externals/ext-boost | |
- name: Configure CMake | |
run: > | |
cmake | |
-B ${{github.workspace}}/build | |
-DBOOST_INCLUDEDIR=${{github.workspace}}/externals/ext-boost | |
-DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} | |
-DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" | |
-G Ninja | |
- name: Build | |
working-directory: ${{github.workspace}}/build | |
run: cmake --build . --config Release | |
- name: Test | |
working-directory: ${{github.workspace}}/build | |
run: ctest --extra-verbose -C ${{env.BUILD_TYPE}} |