Update workflows to use actions/setup-python@v5 and upgrade Python ve… #21
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: Windows | |
| on: | |
| push: | |
| jobs: | |
| build-windows: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [windows-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: set env vars | |
| run: | | |
| if [ ${{github.ref_name}} == 'juce8' ]; then | |
| echo "GUI_BRANCH=development-juce8" >> "$GITHUB_ENV" | |
| echo "GUI_LIB_VERSION=v1.0.0-dev" >> "$GITHUB_ENV" | |
| elif [ ${{github.ref_name}} == 'testing-juce8' ]; then | |
| echo "GUI_BRANCH=testing-juce8" >> "$GITHUB_ENV" | |
| echo "GUI_LIB_VERSION=v1.0.0-alpha" >> "$GITHUB_ENV" | |
| else | |
| echo "Invalid branch : ${{github.ref_name}}" | |
| exit 1 | |
| fi | |
| shell: bash | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - 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://openephys.jfrog.io/artifactory/GUI-binaries/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 -DCOPY_PYTHON_DL=ON .. | |
| shell: bash | |
| - name: Add msbuild to PATH | |
| uses: microsoft/setup-msbuild@v2 | |
| - 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: PythonProcessor-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 | |
| mv $build_dir/shared . | |
| zipfile=${package}_${new_plugin_ver}.zip | |
| echo "zipfile=${zipfile}" >> $GITHUB_ENV | |
| powershell Compress-Archive -Path "plugins" -DestinationPath ${zipfile} | |
| powershell Compress-Archive -U -Path "shared" -DestinationPath ${zipfile} | |
| shell: bash | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ env.zipfile }} | |
| path: ${{ env.zipfile }} | |
| - name: deploy | |
| if: github.ref == 'refs/heads/testing-juce8' | |
| env: | |
| secrets.ARTIFACTORY_ACCESS_TOKEN: ${{ secrets.secrets.ARTIFACTORY_ACCESS_TOKEN }} | |
| run: | | |
| curl -H "X-JFrog-Art-Api:$secrets.ARTIFACTORY_ACCESS_TOKEN" -T ${{ env.zipfile }} "https://openephys.jfrog.io/artifactory/PythonProcessor-plugin/windows/${{ env.zipfile }}" | |
| shell: bash |