File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -226,6 +226,7 @@ jobs:
226
226
- uses : actions/checkout@v4
227
227
with :
228
228
path : checkout
229
+ submodules : recursive
229
230
230
231
- name : Extract package to ${{ matrix.app }}/Plugins
231
232
run : unzip sentry-unreal-*-engine${{ matrix.unreal }}-github.zip -d checkout/${{ matrix.app }}/Plugins/sentry
@@ -237,6 +238,8 @@ jobs:
237
238
- name : Run tests
238
239
id : run-tests
239
240
run : |
241
+ docker exec -w /workspace/checkout/${{ matrix.app }} unreal bash -c "
242
+ ls -al /workspace/checkout/${{ matrix.app }}/Plugins/sentry "
240
243
docker exec -w /workspace/checkout/${{ matrix.app }} unreal /home/ue4/UnrealEngine/Engine/Build/BatchFiles/RunUAT.sh BuildCookRun \
241
244
-project=/workspace/checkout/${{ matrix.app }}/SentryPlayground.uproject \
242
245
-archivedirectory=/workspace/checkout/${{ matrix.app }}/Builds \
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ public bool Load(ReadOnlyTargetRules target, ModuleRules rules)
115
115
116
116
m_cmakeTargetPath = Path . GetFullPath ( rules . Target . ProjectFile . FullName ) ;
117
117
Console . WriteLine ( "Loading cmake path=: " + Directory . GetParent ( m_cmakeTargetPath ) . FullName ) ;
118
- m_cmakeTargetPath = Directory . GetParent ( m_cmakeTargetPath ) . FullName + "/Plugins/Sentry /sentry-native" ;
118
+ m_cmakeTargetPath = Directory . GetParent ( m_cmakeTargetPath ) . FullName + "/Plugins/sentry /sentry-native" ;
119
119
120
120
m_modulePath = Path . GetFullPath ( rules . ModuleDirectory ) ;
121
121
m_targetPath = Path . Combine ( m_modulePath , m_targetLocation ) ;
@@ -544,7 +544,7 @@ public Sentry(ReadOnlyTargetRules Target) : base(Target)
544
544
if ( PublicDefinitions . Contains ( "USE_SENTRY_NATIVE=1" ) )
545
545
{
546
546
var cmakeTargetPath = Path . GetFullPath ( Target . ProjectFile . FullName ) ;
547
- var targetLocation = Directory . GetParent ( cmakeTargetPath ) . FullName + "/Plugins/Sentry /sentry-native" ;
547
+ var targetLocation = Directory . GetParent ( cmakeTargetPath ) . FullName + "/Plugins/sentry /sentry-native" ;
548
548
549
549
CMakeTargetInst cmakeTarget =
550
550
new CMakeTargetInst ( "sentry-native" , Target . Platform . ToString ( ) , targetLocation , "" ) ;
You can’t perform that action at this time.
0 commit comments