You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change uses: actions/checkout@v2 to uses: actions/checkout@v3 (or uses: actions/checkout@main to always use the latest checkout action?) to eliminate the Node.js 12 actions are deprecated. warning we are now getting. Done in PR Update actions/checkout to v3 in GitHub Actions CI workflow #360.
At some point, change uses: actions/checkout@v3 to uses: actions/checkout@v4 since v3 is deprecated. Doing this, means we won't be able to test on old versions of gcc/Ubuntu since Node 20 won't work on those old Ubuntu versions. IMHO, we should put this off as long as possible.
If anyone wants to help with these, I'd appreciate it!
The text was updated successfully, but these errors were encountered:
Now that PR #334 has been merged, I'd like to see the following enhancements to the GitHub Actions CI workflow:
Add a build for Alpine. Attempted in PR Added Alpine builds to GitHub Actions CI #362, but tests segmentation fault inside the GitHub Actions Alpine 3.17 container (but not in Docker on my system).Done (finally!) in PR Added Alpine builds to GitHub Actions CI #362 and PR Add Alpine 3.19 build to GitHub Actions CI #410.Dockerfile
for building gearmand on Debian would be helpful for this. Does anyone have one?Rename theDone in PR More refinements to GitHub Actions CI #363..github/workflow/c-cpp.yml
file to the far more common nameci.yml
.ChangeDone in PR Update actions/checkout to v3 in GitHub Actions CI workflow #360.uses: actions/checkout@v2
touses: actions/checkout@v3
(oruses: actions/checkout@main
to always use the latest checkout action?) to eliminate theNode.js 12 actions are deprecated.
warning we are now getting.AddDone in PR Added CXXFLAGS="-Wp,-D_GLIBCXX_ASSERTIONS" to gcc-9 and higher builds in GitHub Actions CI #361.CXXFLAGS="-Wp,-D_GLIBCXX_ASSERTIONS"
to the gcc 9 (and higher??) build(s).uses: actions/checkout@v3
touses: actions/checkout@v4
sincev3
is deprecated. Doing this, means we won't be able to test on old versions of gcc/Ubuntu since Node 20 won't work on those old Ubuntu versions. IMHO, we should put this off as long as possible.If anyone wants to help with these, I'd appreciate it!
The text was updated successfully, but these errors were encountered: