Fix typo in README #2
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: Mac Build With Flags | |
on: | |
push | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build -DDYNAMIC_LOOKUP=ON | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build | |
- name: Check that AbstractPlugin::preface is defined in the executable | |
run: nm -g ${{github.workspace}}/build/dynamic_lookup | grep AbstractPlugin.preface | grep T | |
- name: Check that AbstractPlugin::preface is undefined in the module | |
run: nm -g ${{github.workspace}}/build/libModulePlugin.so | grep AbstractPlugin.preface | grep U | |
- name: Run the executable | |
run: cd ${{github.workspace}}/build && ./dynamic_lookup |