Update send custom int & float transfer #25
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
name: Build MDDriver library and Plugins folder | |
on: | |
push: | |
pull_request: | |
release: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Configure | |
run: cmake -S . -B build | |
- name: Build | |
run: cmake --build build | |
- name: Archive UnityMol Plugin library | |
uses: actions/upload-artifact@v3 | |
with: | |
name: UnityMol-Plugin | |
path: | | |
build/plugins/libUnity_MDDriver.* | |
build/plugins/Debug/Unity_MDDriver.dll |