Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "TestCPP Shellcheck"

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
ignore_names: llvm.sh # External file
10 changes: 10 additions & 0 deletions 3rdparty/boost-update.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/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