mirror of
https://github.com/boostorg/process.git
synced 2026-01-20 16:52:14 +00:00
Compare commits
4 Commits
develop
...
anarthal/d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ef33259c24 | ||
|
|
042091042a | ||
|
|
5aa276431d | ||
|
|
953f80ea50 |
37
.github/workflows/ci.yml
vendored
37
.github/workflows/ci.yml
vendored
@@ -141,6 +141,43 @@ jobs:
|
|||||||
cd ../boost-root
|
cd ../boost-root
|
||||||
./b2 -j3 libs/$LIBRARY/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} variant=debug,release
|
./b2 -j3 libs/$LIBRARY/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} variant=debug,release
|
||||||
|
|
||||||
|
alpine-linux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: alpine:3.20.1
|
||||||
|
steps:
|
||||||
|
- name: Install packages
|
||||||
|
run: apk add g++ git python3 linux-headers
|
||||||
|
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup Boost
|
||||||
|
run: |
|
||||||
|
echo GITHUB_REPOSITORY: $GITHUB_REPOSITORY
|
||||||
|
LIBRARY=${GITHUB_REPOSITORY#*/}
|
||||||
|
echo LIBRARY: $LIBRARY
|
||||||
|
echo "LIBRARY=$LIBRARY" >> $GITHUB_ENV
|
||||||
|
echo GITHUB_BASE_REF: $GITHUB_BASE_REF
|
||||||
|
echo GITHUB_REF: $GITHUB_REF
|
||||||
|
REF=${GITHUB_BASE_REF:-$GITHUB_REF}
|
||||||
|
REF=${REF#refs/heads/}
|
||||||
|
echo REF: $REF
|
||||||
|
BOOST_BRANCH=develop && [ "$REF" == "master" ] && BOOST_BRANCH=master || true
|
||||||
|
echo BOOST_BRANCH: $BOOST_BRANCH
|
||||||
|
cd ..
|
||||||
|
git clone -b $BOOST_BRANCH --depth 1 https://github.com/boostorg/boost.git boost-root
|
||||||
|
cd boost-root
|
||||||
|
cp -r $GITHUB_WORKSPACE/* libs/$LIBRARY
|
||||||
|
git submodule update --init tools/boostdep
|
||||||
|
python3 tools/boostdep/depinst/depinst.py --git_args "--jobs 3" $LIBRARY
|
||||||
|
./bootstrap.sh
|
||||||
|
./b2 -d0 headers
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
run: |
|
||||||
|
cd ../boost-root
|
||||||
|
./b2 -j3 libs/$LIBRARY/test toolset=gcc cxxstd=23 variant=debug,release
|
||||||
|
|
||||||
windows:
|
windows:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|||||||
@@ -60,6 +60,10 @@ int fdwalk(int (*func)(void *, int), void *cd);
|
|||||||
#if defined(SYS_close_range)
|
#if defined(SYS_close_range)
|
||||||
|
|
||||||
#define BOOST_PROCESS_V2_HAS_CLOSE_RANGE 1
|
#define BOOST_PROCESS_V2_HAS_CLOSE_RANGE 1
|
||||||
|
#if !defined(CLOSE_RANGE_UNSHARE)
|
||||||
|
#define CLOSE_RANGE_UNSHARE 2
|
||||||
|
#endif
|
||||||
|
|
||||||
int close_range(unsigned int first, unsigned int last, int flags)
|
int close_range(unsigned int first, unsigned int last, int flags)
|
||||||
{
|
{
|
||||||
return ::syscall(SYS_close_range, first, last, flags);
|
return ::syscall(SYS_close_range, first, last, flags);
|
||||||
|
|||||||
Reference in New Issue
Block a user