Skip to content

Commit 9bff635

Browse files
WIP
1 parent 98debb4 commit 9bff635

File tree

1 file changed

+18
-10
lines changed

1 file changed

+18
-10
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,15 @@ jobs:
114114
cd src
115115
chmod +x build.sh
116116
./build.sh
117-
cd ..
118-
test -f ./out/pilotlight_python || exit 1
119-
test -f ./out/gltfd.a || exit 1
120-
test -f ./out/pl_platform_ext.a || exit 1
121-
test -f ./pilotlight/pilotlight.so || exit 1
117+
cd out
118+
ls
119+
cd ../pilotlight
120+
ls
121+
cd ../src
122+
test -f ../out/pilotlight_python || exit 1
123+
test -f ../out/gltfd.a || exit 1
124+
test -f ../out/pl_platform_ext.a || exit 1
125+
test -f ../pilotlight/pilotlight.so || exit 1
122126
123127
Ubuntu:
124128

@@ -177,8 +181,12 @@ jobs:
177181
cd src
178182
chmod +x build.sh
179183
./build.sh
180-
cd ..
181-
test -f ./out/pilotlight_python || exit 1
182-
test -f ./out/gltfd.a || exit 1
183-
test -f ./out/pl_platform_ext.a || exit 1
184-
test -f ./pilotlight/pilotlight.so || exit 1
184+
cd out
185+
ls
186+
cd ../pilotlight
187+
ls
188+
cd ../src
189+
test -f ../out/pilotlight_python || exit 1
190+
test -f ../out/gltfd.a || exit 1
191+
test -f ../out/pl_platform_ext.a || exit 1
192+
test -f ../pilotlight/pilotlight.so || exit 1

0 commit comments

Comments
 (0)