Skip to content

Commit

Permalink
Add GHA workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
anjaldoshi committed Jan 11, 2024
1 parent f966689 commit 323ac9d
Show file tree
Hide file tree
Showing 3 changed files with 162 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: linux

on:
push:

jobs:

build-linux:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]

steps:
- uses: actions/checkout@v3
- name: setup
run: |
sudo apt update
cd ../..
git clone https://github.com/open-ephys/plugin-GUI.git --branch main
sudo ./plugin-GUI/Resources/Scripts/install_linux_dependencies.sh
cd plugin-GUI/Build && cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ..
- name: build
run: |
conda env list
cd Build
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ..
make
# - name: test
# run: cd build && ctest
- name: package
env:
build_dir: "Build"
package: LatencyHistogram-linux
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/*.so plugins
zipfile=${package}_${new_plugin_ver}.zip
echo "zipfile=${zipfile}" >> $GITHUB_ENV
zip -r -X $zipfile plugins
- name: deploy
if: github.ref == 'refs/heads/main'
env:
artifactoryApiKey: ${{ secrets.artifactoryApiKey }}
run: |
curl -H "X-JFrog-Art-Api:$artifactoryApiKey" -T ${{ env.zipfile }} "https://openephys.jfrog.io/artifactory/LatencyHistogram-plugin/linux/${{ env.zipfile }}"
47 changes: 47 additions & 0 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: mac

on:
push:

jobs:

build-mac:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]

steps:
- uses: actions/checkout@v3
- name: setup
run: |
cd ../..
git clone https://github.com/open-ephys/plugin-GUI.git --branch main
cd plugin-GUI/Build && cmake -G "Xcode" ..
- name: build
run: |
cd Build
cmake -G "Xcode" ..
xcodebuild -configuration Release
# - name: test
# run: cd build && ctest
- name: package
env:
build_dir: "Build/Release"
package: LatencyHistogram-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
echo "zipfile=${zipfile}" >> $GITHUB_ENV
zip -r -X $zipfile plugins
- name: deploy
if: github.ref == 'refs/heads/main'
env:
artifactoryApiKey: ${{ secrets.artifactoryApiKey }}
run: |
curl -H "X-JFrog-Art-Api:$artifactoryApiKey" -T ${{ env.zipfile }} "https://openephys.jfrog.io/artifactory/LatencyHistogram-plugin/mac/${{ env.zipfile }}"
65 changes: 65 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Windows

on:
push:

jobs:

build-windows:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2019]

steps:
- uses: actions/checkout@v3
- name: setup
env:
repo: open-ephys-gui
package: "open-ephys-lib"
run: |
cd ../..
git clone https://github.com/open-ephys/plugin-GUI.git --branch main
cd plugin-GUI/Build
cmake -G "Visual Studio 16 2019" -A x64 ..
mkdir Release && cd Release
curl -L https://openephysgui.jfrog.io/artifactory/Libraries/open-ephys-lib-v0.6.0.zip --output open-ephys-lib.zip
unzip open-ephys-lib.zip
shell: bash
- name: configure
run: |
cd Build
cmake -G "Visual Studio 16 2019" -A x64 ..
shell: bash
- name: Add msbuild to PATH
uses: microsoft/[email protected]
- name: build-plugin
run: |
cd Build
msbuild INSTALL.vcxproj -p:Configuration=Release -p:Platform=x64
shell: cmd
# TODO: Perform some basic testing before publishing...
# - name: test
# run: cd build && ctest
- name: package
env:
build_dir: "Build/Release"
package: LatencyHistogram-windows
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
echo "zipfile=${zipfile}" >> $GITHUB_ENV
powershell Compress-Archive -Path "plugins" -DestinationPath ${zipfile}
shell: bash
- name: deploy
if: github.ref == 'refs/heads/main'
env:
artifactoryApiKey: ${{ secrets.artifactoryApiKey }}
run: |
curl -H "X-JFrog-Art-Api:$artifactoryApiKey" -T ${{ env.zipfile }} "https://openephys.jfrog.io/artifactory/LatencyHistogram-plugin/windows/${{ env.zipfile }}"
shell: bash

0 comments on commit 323ac9d

Please sign in to comment.