summaryrefslogtreecommitdiff
path: root/.github/workflows/pip-packaging-linux.yml
blob: bd524af936c66b528e866c600b47c4424832084c (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
46
47
48
49
50
51
52
53
54
55
56
name: pip packaging linux

on:
  release:
    types: [published]

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
      - name: Publish on PyPi
        env:
          TWINE_USERNAME: __token__
          TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
        run: |
          $PYTHON38/bin/python -m twine upload build_35/src/python/wheelhouse/*
          $PYTHON38/bin/python -m twine upload build_36/src/python/wheelhouse/*
          $PYTHON38/bin/python -m twine upload build_37/src/python/wheelhouse/*
          $PYTHON38/bin/python -m twine upload build_38/src/python/wheelhouse/*