mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-01 09:49:45 +00:00
Regression test CI fix.
This commit is contained in:
parent
f727a9c3f1
commit
4cfd38e24f
3 changed files with 7 additions and 3 deletions
|
@ -34,7 +34,7 @@ rm -f tmpscad*.scad
|
||||||
for lib in $PREVIEW_LIBS; do
|
for lib in $PREVIEW_LIBS; do
|
||||||
lib="$(basename $lib .scad)"
|
lib="$(basename $lib .scad)"
|
||||||
mkdir -p images/$lib
|
mkdir -p images/$lib
|
||||||
if [ "$IMGGEN" != "" -a "$TESTONLY" != ""]; then
|
if [ "$IMGGEN" != "" -a "$TESTONLY" != "" ]; then
|
||||||
rm -f images/$lib/*.png images/$lib/*.gif
|
rm -f images/$lib/*.png images/$lib/*.gif
|
||||||
fi
|
fi
|
||||||
echo "$lib.scad"
|
echo "$lib.scad"
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
OPENSCAD=/Applications/OpenSCAD.app/Contents/MacOS/OpenSCAD
|
if [ "$(uname -s)" != "Darwin" ]; then
|
||||||
|
OPENSCAD=openscad
|
||||||
|
else
|
||||||
|
OPENSCAD=/Applications/OpenSCAD.app/Contents/MacOS/OpenSCAD
|
||||||
|
fi
|
||||||
|
|
||||||
for testscript in tests/test_*.scad ; do
|
for testscript in tests/test_*.scad ; do
|
||||||
repname="$(basename $testscript|sed 's/^test_//')"
|
repname="$(basename $testscript|sed 's/^test_//')"
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
BOSL_VERSION = [2,0,355];
|
BOSL_VERSION = [2,0,356];
|
||||||
|
|
||||||
|
|
||||||
// Section: BOSL Library Version Functions
|
// Section: BOSL Library Version Functions
|
||||||
|
|
Loading…
Reference in a new issue