Fix macOS build process by ensuring proper rpath for Python #31
Workflow file for this run
This file contains hidden or 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: linux | |
on: | |
push: | |
branches: | |
- '**' # Runs on push to any branch | |
tags: | |
- '*' # Runs on any tag push | |
pull_request: | |
branches: | |
- main # Runs on pull requests targeting the main branch | |
jobs: | |
build-linux: | |
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.base_ref == 'main') | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: setup | |
run: | | |
sudo apt update | |
cd ../.. | |
git clone https://github.com/open-ephys/plugin-GUI.git --branch main --single-branch | |
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 -DCOPY_PYTHON_DL=ON .. | |
make | |
# - name: test | |
# run: cd build && ctest | |
- name: package | |
env: | |
build_dir: "Build" | |
package: PythonProcessor-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 | |
mv $build_dir/shared . | |
zipfile=${package}_${new_plugin_ver}.zip | |
echo "zipfile=${zipfile}" >> $GITHUB_ENV | |
zip -r -X $zipfile plugins shared | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.zipfile }} | |
path: ${{ env.zipfile }} | |
- name: deploy | |
if: github.ref == 'refs/heads/main' | |
env: | |
ARTIFACTORY_ACCESS_TOKEN: ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }} | |
run: | | |
curl -H "X-JFrog-Art-Api:$ARTIFACTORY_ACCESS_TOKEN" -T ${{ env.zipfile }} "https://openephys.jfrog.io/artifactory/PythonProcessor-plugin/linux/${{ env.zipfile }}" |