Environment variables for abaqus setup #191 #179
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build odbserver and upload to PyPI | |
| on: | |
| workflow_dispatch: | |
| release: | |
| types: [published] | |
| push: | |
| branches: [ci-debug] | |
| pull_request: | |
| branches: | |
| - master | |
| - develop | |
| defaults: | |
| run: | |
| working-directory: tools/odbserver | |
| jobs: | |
| build_wheels: | |
| name: Build wheels | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v5 | |
| name: Install Python | |
| with: | |
| python-version: '3.12' | |
| - name: Install setuptools | |
| run: | | |
| pip install -U setuptools setuptools_scm wheel | |
| - name: Build wheels | |
| run: | | |
| python setup.py bdist_wheel | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: artifact-wheel | |
| path: tools/odbserver/dist/*.whl | |
| build_sdist: | |
| name: Build source distribution | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v5 | |
| name: Install Python | |
| with: | |
| python-version: '3.12' | |
| - name: Install setuptools | |
| run: | | |
| pip install -U setuptools setuptools_scm wheel | |
| - name: Build sdist | |
| run: python setup.py sdist | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: artifact-sdist | |
| path: tools/odbserver/dist/*.tar.gz | |
| upload_pypi: | |
| needs: [build_wheels, build_sdist] | |
| runs-on: ubuntu-latest | |
| environment: release | |
| permissions: | |
| # IMPORTANT: this permission is mandatory for Trusted Publishing | |
| id-token: write | |
| steps: | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: artifact-sdist | |
| path: dist | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: artifact-wheel | |
| path: dist | |
| - name: Publish package distributions to PyPI | |
| if: github.event_name == 'release' && github.event.action == 'published' | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| # - name: Publish package distributions to PyPI test | |
| # if: github.event_name != 'release' | |
| # uses: pypa/gh-action-pypi-publish@release/v1 | |
| # with: | |
| # verbose: true | |
| # repository-url: https://test.pypi.org/legacy/ |