-
Notifications
You must be signed in to change notification settings - Fork 0
Update the copyright year to 2026 #350 #351
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,6 +1,6 @@ | ||||||
| # GitHub Actions Workflow | ||||||
| # Build with Clang on Linux | ||||||
| # Copyright 2019-2025 kaoru https://www.tetengo.org/ | ||||||
| # Copyright 2019-2026 kaoru https://www.tetengo.org/ | ||||||
|
|
||||||
| name: Linux - Clang | ||||||
|
|
||||||
|
|
@@ -93,7 +93,7 @@ jobs: | |||||
| #tar -xf boost_${{ env.BOOST_VER }}.tar.bz2 | ||||||
| cd boost_${{ env.BOOST_VER }} | ||||||
| ./bootstrap.sh --with-toolset=${{ env.BOOST_BOOTSTRAP_TOOLSET }} | ||||||
| (./b2 -j ${{ env.CONCURRENT_BUILD }} toolset=${{ env.BOOST_TOOLSET }} variant=release link=static || :) | ||||||
| (./b2 -j ${{ env.CONCURRENT_BUILD }} toolset=${{ env.BOOST_TOOLSET }} variant=release link=static --without-mpi || :) | ||||||
| touch .build_finished | ||||||
| fi | ||||||
|
|
||||||
|
|
@@ -187,7 +187,7 @@ jobs: | |||||
| shell: bash | ||||||
| run: | | ||||||
| cd .boost_build/boost_${{ env.BOOST_VER }} | ||||||
| (sudo ./b2 -j ${{ env.CONCURRENT_BUILD }} toolset=${{ env.BOOST_TOOLSET }} variant=release link=static install --prefix=/usr/local || :) | ||||||
| (sudo ./b2 -j ${{ env.CONCURRENT_BUILD }} toolset=${{ env.BOOST_TOOLSET }} variant=release link=static --without-mpi install --prefix=/usr/local || :) | ||||||
|
||||||
| (sudo ./b2 -j ${{ env.CONCURRENT_BUILD }} toolset=${{ env.BOOST_TOOLSET }} variant=release link=static --without-mpi install --prefix=/usr/local || :) | |
| sudo ./b2 -j ${{ env.CONCURRENT_BUILD }} toolset=${{ env.BOOST_TOOLSET }} variant=release link=static --without-mpi install --prefix=/usr/local || { echo "Boost installation failed; aborting lint job." >&2; exit 1; } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| Copyright (C) 2019-2025 kaoru https://www.tetengo.org/ | ||
| Copyright (C) 2019-2026 kaoru https://www.tetengo.org/ |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| # Automake Settings | ||
| # Copyright (C) 2019-2025 kaoru https://www.tetengo.org/ | ||
| # Copyright (C) 2019-2026 kaoru https://www.tetengo.org/ | ||
|
|
||
| EXTRA_DIST = \ | ||
| 0namespace.dox |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These Boost build/install commands are still wrapped with
|| :, which suppresses failures and can let CI proceed with an incomplete or missing Boost install. Since you're modifying these lines, consider removing the error suppression (or replacing it with explicit handling/logging) so CI fails loudly if Boost doesn't build/install as expected.