File tree Expand file tree Collapse file tree 3 files changed +9
-18
lines changed Expand file tree Collapse file tree 3 files changed +9
-18
lines changed Original file line number Diff line number Diff line change 69
69
70
70
needs : [check-semver]
71
71
if : always() && !failure() && !cancelled()
72
- runs-on : ${{ matrix.os }}
73
- strategy :
74
- matrix :
75
- os : [ubuntu-22.04]
72
+ runs-on : ubuntu-22.04
76
73
outputs :
77
74
PLUGIN_API : ${{ steps.setup.outputs.PLUGIN_API }}
78
75
PLUGIN_VERSION : ${{ steps.setup.outputs.PLUGIN_VERSION }}
@@ -83,13 +80,13 @@ jobs:
83
80
- name : setup
84
81
id : setup
85
82
run : |
86
- echo "PLUGIN_VERSION=$(grep -w Source/OpenEphysLib.cpp -e 'info->libVersion' | grep -Eo "[0-9]+.[0-9]+.[0-9]+")" >> GITHUB_OUTPUT
83
+ echo "PLUGIN_VERSION=$(grep -w Source/OpenEphysLib.cpp -e 'info->libVersion' | grep -Eo "[0-9]+.[0-9]+.[0-9]+")" >> "$ GITHUB_OUTPUT"
87
84
sudo apt update
88
85
cd ../..
89
86
git clone https://github.com/open-ephys/plugin-GUI.git --branch testing-juce8
90
87
sudo ./plugin-GUI/Resources/Scripts/install_linux_dependencies.sh
91
88
cd plugin-GUI/Build && cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ..
92
- echo "PLUGIN_API=$(grep -rnw ../Source -e '#define PLUGIN_API_VER' | grep -Eo "[0-9]*" | tail -1)" >> GITHUB_OUTPUT
89
+ echo "PLUGIN_API=$(grep -rnw ../Source -e '#define PLUGIN_API_VER' | grep -Eo "[0-9]*" | tail -1)" >> "$ GITHUB_OUTPUT"
93
90
94
91
- name : build
95
92
id : build
Original file line number Diff line number Diff line change 69
69
70
70
needs : [check-semver]
71
71
if : always() && !failure() && !cancelled()
72
- runs-on : ${{ matrix.os }}
73
- strategy :
74
- matrix :
75
- os : [macos-latest]
72
+ runs-on : macos-latest
76
73
outputs :
77
74
PLUGIN_API : ${{ steps.setup.outputs.PLUGIN_API }}
78
75
PLUGIN_VERSION : ${{ steps.setup.outputs.PLUGIN_VERSION }}
@@ -83,11 +80,11 @@ jobs:
83
80
- name : setup
84
81
id : setup
85
82
run : |
86
- echo "PLUGIN_VERSION=$(grep -w Source/OpenEphysLib.cpp -e 'info->libVersion' | grep -Eo "[0-9]+.[0-9]+.[0-9]+")" >> GITHUB_OUTPUT
83
+ echo "PLUGIN_VERSION=$(grep -w Source/OpenEphysLib.cpp -e 'info->libVersion' | grep -Eo "[0-9]+.[0-9]+.[0-9]+")" >> "$ GITHUB_OUTPUT"
87
84
cd ../..
88
85
git clone https://github.com/open-ephys/plugin-GUI.git --branch testing-juce8
89
86
cd plugin-GUI/Build && cmake -G "Xcode" ..
90
- echo "PLUGIN_API=$(grep -rnw ../Source -e '#define PLUGIN_API_VER' | grep -Eo "[0-9]*" | tail -1)" >> GITHUB_OUTPUT
87
+ echo "PLUGIN_API=$(grep -rnw ../Source -e '#define PLUGIN_API_VER' | grep -Eo "[0-9]*" | tail -1)" >> "$ GITHUB_OUTPUT"
91
88
92
89
- name : build
93
90
id : build
Original file line number Diff line number Diff line change 69
69
70
70
needs : [check-semver]
71
71
if : always() && !failure() && !cancelled()
72
- runs-on : ${{ matrix.os }}
73
- strategy :
74
- matrix :
75
- os : [windows-latest]
72
+ runs-on : windows-latest
76
73
outputs :
77
74
PLUGIN_API : ${{ steps.setup.outputs.PLUGIN_API }}
78
75
PLUGIN_VERSION : ${{ steps.setup.outputs.PLUGIN_VERSION }}
@@ -83,15 +80,15 @@ jobs:
83
80
- name : setup
84
81
id : setup
85
82
run : |
86
- echo "PLUGIN_VERSION=$(grep -w Source/OpenEphysLib.cpp -e 'info->libVersion' | grep -Eo "[0-9]+.[0-9]+.[0-9]+")" >> GITHUB_OUTPUT
83
+ echo "PLUGIN_VERSION=$(grep -w Source/OpenEphysLib.cpp -e 'info->libVersion' | grep -Eo "[0-9]+.[0-9]+.[0-9]+")" >> "$ GITHUB_OUTPUT"
87
84
cd ../..
88
85
git clone https://github.com/open-ephys/plugin-GUI.git --branch testing-juce8
89
86
cd plugin-GUI/Build
90
87
cmake -G "Visual Studio 17 2022" -A x64 ..
91
88
mkdir Release && cd Release
92
89
curl -L https://openephys.jfrog.io/artifactory/GUI-binaries/Libraries/open-ephys-lib-v1.0.0-alpha.zip --output open-ephys-lib.zip
93
90
unzip open-ephys-lib.zip
94
- echo "PLUGIN_API=$(grep -rnw ../../Source -e '#define PLUGIN_API_VER' | grep -Eo "[0-9]*" | tail -1)" >> GITHUB_OUTPUT
91
+ echo "PLUGIN_API=$(grep -rnw ../../Source -e '#define PLUGIN_API_VER' | grep -Eo "[0-9]*" | tail -1)" >> "$ GITHUB_OUTPUT"
95
92
shell : bash
96
93
97
94
- name : configure
You can’t perform that action at this time.
0 commit comments