try
This commit is contained in:
parent
cadf3d1f0c
commit
b14d0a2b3c
1 changed files with 3 additions and 3 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -227,10 +227,10 @@ jobs:
|
||||||
pip3 install dist/*.whl
|
pip3 install dist/*.whl
|
||||||
cd /
|
cd /
|
||||||
echo "moo"
|
echo "moo"
|
||||||
python3 -c 'import pyray; pyray.init_window(100,100,"test")' >output 2>&1 || true
|
python3 -c 'import pyray; pyray.init_window(100,100,"test")' >/tmp/output 2>&1 || true
|
||||||
echo "woo"
|
echo "woo"
|
||||||
cat output
|
cat /tmp/output
|
||||||
if grep -q "INFO: Initializing raylib" output; then
|
if grep -q "INFO: Initializing raylib" /tmp/output; then
|
||||||
echo "boo"
|
echo "boo"
|
||||||
exit 0
|
exit 0
|
||||||
else
|
else
|
||||||
|
|
Reference in a new issue