mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-12 19:40:28 +02:00
35 lines
1003 B
Bash
Executable File
35 lines
1003 B
Bash
Executable File
# Discarding local changes
|
|
echo "This will discard all your uncommited changes and restore the last commit. Continue?"
|
|
read
|
|
git reset --hard
|
|
# Run CPP Check
|
|
echo "Running CPPCheck..."
|
|
cppcheck --enable=all --output-file=cppcheck_errors.txt src/
|
|
cppcheck --check-config --output-file=cppcheck_config.txt src/
|
|
echo "CPPCheck finished"
|
|
# Uncrustify Files
|
|
echo "Running Uncrustify..."
|
|
find . \( -name "*.cpp" -o -name "*.c" -o -name "*.h" \) -exec uncrustify -c conf/uncrustify.cfg --no-backup {} +
|
|
echo "Uncrustify finished."
|
|
# Run Unit Tests
|
|
echo "Running unit tests..."
|
|
|
|
echo "Finished unit testing."
|
|
# Remove Overhead Folders/ Files
|
|
echo "Cleaning directory..."
|
|
rm -r src/build-*
|
|
rm -r build-*/
|
|
rm -r Examples/
|
|
rm src/*.pro.user
|
|
echo "Directory cleaned."
|
|
# Run Doxygen
|
|
echo "Running Doxygen..."
|
|
doxygen conf/intelliphoto_dox
|
|
echo "Doxygen finished."
|
|
# Adding changes to git
|
|
echo "Committing Changes to Git..."
|
|
git add '*'
|
|
git commit -m "Automated Release Preparation"
|
|
echo "Committed."
|
|
echo "Finished."
|