Bump plugin version to 1.0.0 #27
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: | |
| jobs: | |
| build-linux: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-22.04] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: set env vars | |
| run: | | |
| if [ ${{github.ref_name}} == 'juce8' ]; then | |
| echo "GUI_BRANCH=development-juce8" >> "$GITHUB_ENV" | |
| elif [ ${{github.ref_name}} == 'testing-juce8' ]; then | |
| echo "GUI_BRANCH=testing-juce8" >> "$GITHUB_ENV" | |
| else | |
| echo "Invalid branch : ${{github.ref_name}}" | |
| exit 1 | |
| fi | |
| - name: setup | |
| run: | | |
| sudo apt update | |
| cd ../.. | |
| git clone https://github.com/open-ephys/plugin-GUI.git --branch $GUI_BRANCH | |
| sudo ./plugin-GUI/Resources/Scripts/install_linux_dependencies.sh | |
| cd plugin-GUI/Build && cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release .. | |
| cd ../.. | |
| mkdir OEPlugins && cd OEPlugins | |
| git clone https://github.com/open-ephys-plugins/OpenEphysFFTW.git --branch ${{github.ref_name}} | |
| cd OpenEphysFFTW/Build | |
| cmake -G 'Unix Makefiles' -DCMAKE_BUILD_TYPE=Release .. | |
| make install | |
| - name: build | |
| run: | | |
| cd Build | |
| cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release .. | |
| make | |
| # - name: test | |
| # run: cd build && ctest | |
| - name: deploy | |
| if: github.ref == 'refs/heads/testing-juce8' | |
| env: | |
| ARTIFACTORY_ACCESS_TOKEN: ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }} | |
| build_dir: "Build" | |
| package: SpectrumViewer-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 | |
| zip -r -X $zipfile plugins | |
| curl -H "X-JFrog-Art-Api:$ARTIFACTORY_ACCESS_TOKEN" -T $zipfile "https://openephys.jfrog.io/artifactory/SpectrumViewer-plugin/linux/$zipfile" |