From a962b197013b3d230d1490e1f46051a11a11fc05 Mon Sep 17 00:00:00 2001 From: laggykiller Date: Wed, 18 Oct 2023 18:12:28 +0800 Subject: [PATCH] Test with specifying libcxx version --- .github/workflows/build.yaml | 28 ++++++++++++++-------------- get_deps.py | 2 +- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b1dc719..171d368 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -16,8 +16,8 @@ jobs: fail-fast: false matrix: arch: ['ppc64le', 'x86_64'] - boost_version: ['1.74.0', '1.75.0', '1.76.0', '1.77.0'] - b2_version: ['4.5.0', '4.10.1'] + boost_version: ['1.75.0', '1.76.0'] + b2_version: ['4.10.1'] steps: - uses: actions/checkout@v3 @@ -44,20 +44,20 @@ jobs: # with: # path: ./wheelhouse/*.whl - build_sdist: - name: Build source distribution - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - submodules: recursive + # build_sdist: + # name: Build source distribution + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v3 + # with: + # submodules: recursive - - name: Build sdist - run: pipx run build --sdist + # - name: Build sdist + # run: pipx run build --sdist - - uses: actions/upload-artifact@v3 - with: - path: dist/*.tar.gz + # - uses: actions/upload-artifact@v3 + # with: + # path: dist/*.tar.gz # upload_pypi_test: # needs: [build_wheels, build_sdist] diff --git a/get_deps.py b/get_deps.py index 90c7a5c..b9f02db 100755 --- a/get_deps.py +++ b/get_deps.py @@ -26,7 +26,7 @@ def install_deps(arch): settings.append('os=Linux') settings.append('compiler=gcc') settings.append('compiler.version=10') - settings.append('compiler.libcxx=libstdc++') + settings.append('compiler.libcxx=libstdc++11') if arch: settings.append('arch=' + arch)