feat: use cmake #4
Workflow file for this run
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
on: | |
pull_request: | |
workflow_dispatch: | |
name: C++ CI | |
jobs: | |
cpp: | |
name: C++ | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
rust: | |
- stable | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- uses: ./.github/actions/libextism | |
- run: git submodule update --init | |
- name: Install C++ SDK deps | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: | | |
brew install jsoncpp googletest pkg-config | |
- name: Install C++ SDK deps | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: | | |
sudo apt-get install g++ libjsoncpp-dev libgtest-dev pkg-config | |
- name: Run C++ tests | |
run: | | |
mkdir build | |
cd build | |
cmake .. | |
make | |
LD_LIBRARY_PATH=/usr/local/lib make test | |
LD_LIBRARY_PATH=/usr/local/lib ./example ../wasm/code-functions.wasm |