Skip to content

Commit

Permalink
Test with specifying libcxx version
Browse files Browse the repository at this point in the history
  • Loading branch information
laggykiller committed Oct 18, 2023
1 parent ec9ee5d commit a962b19
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion get_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit a962b19

Please sign in to comment.