File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 31
31
xcode-version : latest-stable
32
32
- uses : actions/setup-python@v5
33
33
with :
34
- python-version : ' 3.10 '
34
+ python-version : ' 3.12 '
35
35
- name : setup
36
36
run : |
37
37
cd ../..
40
40
- name : build
41
41
run : |
42
42
cd Build
43
- cmake -G "Xcode" -DPython_ROOT_DIR="$CONDA/envs/oe-python-plugin " -DCOPY_PYTHON_DL=ON ..
43
+ cmake -G "Xcode" -DPython_ROOT_DIR="${{ env.pythonLocation }} " -DCOPY_PYTHON_DL=ON ..
44
44
xcodebuild -configuration Release
45
45
# - name: test
46
46
# run: cd build && ctest
@@ -108,7 +108,7 @@ jobs:
108
108
zipfile=${package}_${new_plugin_ver}.zip
109
109
echo "zipfile=${zipfile}" >> $GITHUB_ENV
110
110
zip -r -X $zipfile plugins shared
111
- - uses : actions/upload-artifact@v3
111
+ - uses : actions/upload-artifact@v4
112
112
with :
113
113
name : ${{ env.zipfile }}
114
114
path : ${{ env.zipfile }}
Original file line number Diff line number Diff line change @@ -364,7 +364,11 @@ void PythonProcessor::parameterValueChanged(Parameter* param)
364
364
else if (param->getName ().equalsIgnoreCase (" current_stream" ))
365
365
{
366
366
String streamKey = param->getValueAsString ();
367
- uint16 candidateStream = getDataStream (streamKey)->getStreamId ();
367
+ uint16 candidateStream = 0 ;
368
+ if (auto *stream = getDataStream (streamKey))
369
+ {
370
+ candidateStream = stream->getStreamId ();
371
+ }
368
372
369
373
if (streamExists (candidateStream)
370
374
&& currentStream != candidateStream)
You can’t perform that action at this time.
0 commit comments