Skip to content

Create Boost.Stacktrace update script #115

@eljonny

Description

@eljonny

Create a script to update to a different Boost version.

So far, this is what I have:

#!/bin/bash

NEW_BOOST_VERSION="$1"
CURRENT_BOOST_COMMIT_SHA="$(git rev-parse HEAD)"

git checkout "boost-$NEW_BOOST_VERSION"
git cherry-pick "$CURRENT_BOOST_COMMIT_SHA"
git commit -am "Apply CMake changes to enable project usage as git submodule directly."
git tag -s "boost-$NEW_BOOST_VERSION-cmake-git-submodule" --file=../cmake-git-submodule.tag.msg
git push --tags

I can test this when the next Boost release comes out.

Sub-issues

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions