Skip to content

Socket updates - reconnect loop, merge buttons #53

Socket updates - reconnect loop, merge buttons

Socket updates - reconnect loop, merge buttons #53

Workflow file for this run

name: Windows
on:
push:
branches: [main]
pull_request:
env:
artifactoryApiKey: ${{ secrets.artifactoryApiKey }}
build_dir: "Build/Release"
package: EphysSocket-windows
jobs:
build-windows:
runs-on: [windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: set env vars
run: |
echo "GUI_BRANCH=development-juce8" >> "$GITHUB_ENV"
echo "GUI_LIB_VERSION=v1.0.0-dev" >> "$GITHUB_ENV"
shell: bash
- name: setup
run: |
cd ../..
git clone https://github.com/open-ephys/plugin-GUI.git --branch $GUI_BRANCH
cd plugin-GUI/Build
cmake -G "Visual Studio 17 2022" -A x64 ..
mkdir Release && cd Release
curl -L https://openephysgui.jfrog.io/artifactory/Libraries/open-ephys-lib-$GUI_LIB_VERSION.zip --output open-ephys-lib.zip
unzip open-ephys-lib.zip
shell: bash
- name: configure
run: |
cd Build
cmake -G "Visual Studio 17 2022" -A x64 ..
shell: bash
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
- name: build-plugin
id: build
run: |
cd Build
msbuild INSTALL.vcxproj -p:Configuration=Release -p:Platform=x64
shell: cmd
- name: deploy
if: github.ref == 'refs/heads/juce8' && steps.build.outcome == 'success'
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 $build_dir/*.dll plugins
zipfile=${package}_${new_plugin_ver}.zip
powershell Compress-Archive -Path "plugins" -DestinationPath ${zipfile}
curl -H "X-JFrog-Art-Api:$artifactoryApiKey" -T $zipfile "https://openephys.jfrog.io/artifactory/EphysSocket-plugin/windows/$zipfile"
shell: bash