cppcheck/createrelease

112 lines
3.5 KiB
Plaintext
Raw Normal View History

2009-02-02 20:21:58 +01:00
#!/bin/bash
#
# A script for creating release packages. The release packages are create in the home directory.
#
# Windows installer:
# - ensure latest build was successful
# - ensure cfg files etc are included (win_installer/cppcheck.wxs)
2020-06-13 18:19:47 +02:00
#
# self check, fix critical issues:
# ./cppcheck -D__CPPCHECK__ --library=cppcheck-lib --enable=style --inconclusive --inline-suppr --suppress=bitwiseOnBoolean --suppress=shadowFunction --suppress=useStlAlgorithm --suppress=*:externals/picojson.h cli gui/*.cpp --suppress=functionConst --suppress=functionStatic -q lib
#
# check --bug-hunting output:
2021-03-21 21:00:52 +01:00
# make clean && make -j4 USE_Z3=yes && ./cppcheck -D__CPPCHECK__ --bug-hunting lib
#
2015-01-03 17:31:52 +01:00
# Update translations
# lupdate gui.pro
#
# Update copyright year
2021-03-21 21:00:52 +01:00
# git diff 2.3 -- */*.cpp */*.h | grep '^diff --git a/' | sed 's|.* b/||' | xargs sed -i 's/Copyright (C) 2007-20[12]./Copyright (C) 2007-2021/'
# git diff | grep '^diff --git a/'
#
# Make sure "cppcheck --errorlist" works. For example with:
# make test
2016-01-09 15:37:10 +01:00
# ./cppcheck --errorlist > errlist.xml && xmllint --noout errlist.xml
2009-08-16 15:57:16 +02:00
#
2013-06-18 06:47:15 +02:00
# Update AUTHORS using output from:
2017-10-07 12:55:36 +02:00
# git log --format='%aN' 1.81..HEAD | sort -u > AUTHORS2 && diff -y AUTHORS AUTHORS2 | less
2013-06-18 06:47:15 +02:00
#
# Update version numbers in:
2020-06-13 17:04:26 +02:00
# sed -i "s/[12].[0-9][0-9]*.99/2.1/" cli/main.cpp
# sed -i "s/[12].[0-9][0-9]*/2.1/" cmake/versions.cmake
# sed -i "s/MINOR [0-9][0-9]*/MINOR 1/" lib/version.h
# sed -i "s/[12].[0-9][0-9]* dev/2.1/" win_installer/productInfo.wxi
# sed -i "s/[12].[0-9][0-9]*/2.1/" win_installer/productInfo.wxi
2020-10-03 10:47:35 +02:00
# sed -i "s/subtitle: Version 2[.0-9]*/subtitle: Version 2.2/" man/*.md
2013-10-12 12:44:43 +02:00
# Verify:
2016-01-09 15:37:10 +01:00
# grep '\.99' */*.[ch]* && grep '[0-9][0-9] dev' */*.[ch]*
2013-10-12 12:44:43 +02:00
# git commit -a -m "1.43: Set versions"
2010-05-08 15:36:11 +02:00
#
# Update the Makefile:
2016-01-09 15:37:10 +01:00
# make dmake && ./dmake --release
# git commit -a -m "1.43: Updated Makefile"
#
2012-07-02 06:44:30 +02:00
# Build and test the windows installer
#
# Tag:
# git tag 1.43
# git push --tags
2010-05-08 15:36:11 +02:00
#
2019-06-29 10:21:03 +02:00
# Create a release folder on sourceforge:
# https://sourceforge.net/projects/cppcheck/files/cppcheck/
#
2010-05-08 15:36:11 +02:00
# Create release:
# ./createrelease 1.43
#
# Restore the Makefile:
2019-06-29 10:49:59 +02:00
# make dmake && ./dmake
2010-05-08 15:36:11 +02:00
# git commit -a -m "Makefile: Set debug mode"
#
2014-08-02 14:05:54 +02:00
# Update download link on index.php main page
#
#
2015-01-03 17:31:52 +01:00
# write a news
#
# save "cppcheck --doc" output on wiki, write new release date on wikis
#
2012-09-01 18:11:09 +02:00
# compile new democlient:
# ssh -t danielmarjamaki,cppcheck@shell.sourceforge.net create
# ./build-cppcheck.sh 1.43
2014-08-02 14:05:54 +02:00
#
# run daca with new release
2019-12-21 20:11:00 +01:00
# 1. edit tools/donate-cpu-server.py. Update OLD_VERSION and VERSION
2020-05-10 14:30:53 +02:00
# 2. scp tools/donate-cpu-server.py danielmarjamaki@cppcheck1.osuosl.org:/var/daca@home/
#
# self check, fix stylistic issues:
# ./cppcheck -D__CPPCHECK__ --library=cppcheck-lib --enable=style --inconclusive --inline-suppr --suppress=bitwiseOnBoolean --suppress=shadowFunction --suppress=useStlAlgorithm --suppress=*:externals/picojson.h cli gui/*.cpp lib
# Tag to use
tag=$1
2009-02-02 20:21:58 +01:00
# Name of release
releasename=cppcheck-$tag
2009-02-02 20:21:58 +01:00
2019-06-29 16:16:33 +02:00
set -e
2019-06-29 16:16:33 +02:00
cd ~/cppcheck
2016-08-06 18:58:12 +02:00
2020-06-13 18:19:47 +02:00
mkdir -p upload
2019-06-29 16:16:33 +02:00
make clean
2019-06-29 16:16:33 +02:00
# Create archives..
git archive --format=tar --prefix=$releasename/ $tag | gzip > upload/$releasename.tar.gz
git archive --format=tar --prefix=$releasename/ $tag | bzip2 > upload/$releasename.tar.bz2
git archive --format=zip -9 --prefix=$releasename/ $tag > upload/$releasename.zip
cd upload
scp $releasename.* danielmarjamaki,cppcheck@frs.sourceforge.net:/home/frs/project/c/cp/cppcheck/cppcheck/$tag/
rm $releasename.*
cd ..
# Generate version.txt
2019-06-29 16:16:33 +02:00
make -j4
./cppcheck --version > upload/version.txt
cd ~/cppcheck/upload
scp * danielmarjamaki,cppcheck@web.sourceforge.net:htdocs/
cd ~/cppcheck
rm -rf upload
2019-06-29 10:21:03 +02:00