Skip to content

Commit

Permalink
Make test run configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
Arjan Dikhoff committed Oct 25, 2024
1 parent 47c5173 commit 7d7286e
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,15 @@ rm -rf $migrateDir
rm -rf $sphinxDir
rm -rf $repoDir

echo "Migrate Godot to Redot"
mkdir -p $migrateDir
python migrate.py $inputDir $migrateDir

echo "Translate to html"
mkdir -p $sphinxDir
sphinx-build -b html -j 4 $migrateDir $sphinxDir
if [ -n "$FULL_RUN" ]
echo "Migrate Godot to Redot"
mkdir -p $migrateDir
python migrate.py $inputDir $migrateDir

echo "Translate to html"
mkdir -p $sphinxDir
sphinx-build -b html -j 4 $migrateDir $sphinxDir
fi

echo "DUMMY FILE FOR TESTING: $date" > $sphinxDir/test.html

Expand Down

0 comments on commit 7d7286e

Please sign in to comment.