summaryrefslogtreecommitdiff
path: root/.github/workflows/pip-build-linux.yml
blob: cf41d22476ff81d795b5f9de53132c61961ce031 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: pip build linux

on: [push, pull_request]

jobs:
  build:
    name: build pip wheels
    runs-on: ubuntu-latest
    container: gudhi/pip_for_gudhi
    steps:
      - uses: actions/checkout@v1
        with:
          submodules: true
      - name: Build wheels for Python 3.5
        run: |
          mkdir build_35
          cd build_35
          cmake -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=$PYTHON35/bin/python ..
          cd src/python
          $PYTHON35/bin/python setup.py bdist_wheel
          auditwheel repair dist/*.whl
      - name: Build wheels for Python 3.6
        run: |
          mkdir build_36
          cd build_36
          cmake -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=$PYTHON36/bin/python ..
          cd src/python
          $PYTHON36/bin/python setup.py bdist_wheel
          auditwheel repair dist/*.whl
      - name: Build wheels for Python 3.7
        run: |
          mkdir build_37
          cd build_37
          cmake -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=$PYTHON37/bin/python ..
          cd src/python
          $PYTHON37/bin/python setup.py bdist_wheel
          auditwheel repair dist/*.whl
      - name: Build wheels for Python 3.8
        run: |
          mkdir build_38
          cd build_38
          cmake -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=$PYTHON38/bin/python ..
          cd src/python
          $PYTHON38/bin/python setup.py bdist_wheel
          auditwheel repair dist/*.whl