Bump plugin version to 0.2.1 #20
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 | |
on: | |
push: | |
jobs: | |
build-mac: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup | |
run: | | |
cd ../.. | |
git clone https://github.com/open-ephys/plugin-GUI.git --branch main | |
cd plugin-GUI/Build && cmake -G "Xcode" .. | |
cd ../.. | |
mkdir OEPlugins && cd OEPlugins | |
git clone https://github.com/open-ephys-plugins/OpenEphysFFTW.git | |
cd OpenEphysFFTW/Build | |
cmake -G "Xcode" .. | |
xcodebuild -target install -configuration Release | |
- name: build | |
run: | | |
cd Build | |
cmake -G "Xcode" .. | |
xcodebuild -configuration Release | |
# - name: test | |
# run: cd build && ctest | |
- name: deploy | |
if: github.ref == 'refs/heads/main' | |
env: | |
ARTIFACTORY_ACCESS_TOKEN: ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }} | |
build_dir: "Build/Release" | |
package: SpectrumViewer-mac | |
run: | | |
plugin_api=$(grep -rnw ../../plugin-GUI/Source -e '#define PLUGIN_API_VER' | grep -Eo "[0-9]" | tail -1) | |
tag=$(grep -w Source/OpenEphysLib.cpp -e 'info->libVersion' | grep -Eo "[0-9]+.[0-9]+.[0-9]+") | |
new_plugin_ver=$tag-API$plugin_api | |
mkdir plugins | |
cp -r $build_dir/*.bundle plugins | |
zipfile=${package}_${new_plugin_ver}.zip | |
zip -r -X $zipfile plugins | |
curl -H "X-JFrog-Art-Api:$ARTIFACTORY_ACCESS_TOKEN" -T $zipfile "https://openephys.jfrog.io/artifactory/SpectrumViewer-plugin/mac/$zipfile" |