-
Notifications
You must be signed in to change notification settings - Fork 164
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
Add configuration for GitHub Actions #544
Merged
mloskot
merged 7 commits into
boostorg:develop
from
mloskot:feature/ci-add-github-actions
Jan 25, 2021
Merged
Add configuration for GitHub Actions #544
mloskot
merged 7 commits into
boostorg:develop
from
mloskot:feature/ci-add-github-actions
Jan 25, 2021
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
That is to avoid string table overflow and file too big
Should help avoid linker error undefined reference to std::ios_base::failure::failure(char const*, std::error_code const&)
1 task
mloskot
added a commit
that referenced
this pull request
Jan 26, 2021
meshtag
pushed a commit
to meshtag/gil
that referenced
this pull request
Apr 21, 2021
Add basic GitHub Actions configuration based on mp11 Remove Actions jobs using GCC 4.7 and 4.8 - unsupported compilers Run b2 with --abbreviate-paths on Windows The -std=c++1z is broken for clang-4.0 but no need to test it Add -mbig-obj to GCC on Windows - That is to avoid string table overflow and file too big Define _GLIBCXX_USE_CXX11_ABI=0 for clang 3.5, 3.6, 3.7 - Should help avoid linker error: `undefined reference to std::ios_base::failure::failure(char const*, std::error_code const&)` Disable certain check in algorithm_channel_relation test for clang<3.8
meshtag
pushed a commit
to meshtag/gil
that referenced
this pull request
Apr 21, 2021
Follows: - boostorg#544 Outstanding tasks: - boostorg#549 - boostorg#548
meshtag
pushed a commit
to meshtag/gil
that referenced
this pull request
Apr 22, 2021
Add basic GitHub Actions configuration based on mp11 Remove Actions jobs using GCC 4.7 and 4.8 - unsupported compilers Run b2 with --abbreviate-paths on Windows The -std=c++1z is broken for clang-4.0 but no need to test it Add -mbig-obj to GCC on Windows - That is to avoid string table overflow and file too big Define _GLIBCXX_USE_CXX11_ABI=0 for clang 3.5, 3.6, 3.7 - Should help avoid linker error: `undefined reference to std::ios_base::failure::failure(char const*, std::error_code const&)` Disable certain check in algorithm_channel_relation test for clang<3.8
meshtag
pushed a commit
to meshtag/gil
that referenced
this pull request
Apr 22, 2021
Follows: - boostorg#544 Outstanding tasks: - boostorg#549 - boostorg#548
sdebionne
pushed a commit
to sdebionne/gil-reformated
that referenced
this pull request
May 26, 2021
Follows: - boostorg/gil#544 Outstanding tasks: - boostorg/gil#549 - boostorg/gil#548
sdebionne
pushed a commit
to sdebionne/gil-reformated
that referenced
this pull request
May 26, 2021
Follows: - boostorg/gil#544 Outstanding tasks: - boostorg/gil#549 - boostorg/gil#548 (cherry picked from develop commit 434e78f76b5179369738f25a553b74cbaf886218)
sdebionne
pushed a commit
to sdebionne/gil-reformated
that referenced
this pull request
Jun 23, 2021
Follows: - boostorg/gil#544 Outstanding tasks: - boostorg/gil#549 - boostorg/gil#548
6 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
R.I.P. Travis CI. Long live GitHub Actions.
This configuration has been copied from boostorg/mp11.
Removal of our
.travis.yml
will follow the merging of this PR.References
Tasklist