-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #151 from vincentcasseau/main
Publish to PyPI - v1
- Loading branch information
Showing
3 changed files
with
116 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,8 @@ on: | |
push: | ||
tags: | ||
- 'v*' | ||
# branches: | ||
# - 'main' | ||
branches: | ||
- 'main' | ||
|
||
jobs: | ||
docker: | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
name: publish PyPI | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
branches: | ||
- 'main' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
# strategy: | ||
# matrix: | ||
# python-version: ["3.8", "3.12"] | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.12" | ||
# python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install system dependencies | ||
run: | | ||
sudo apt-get update && sudo apt-get install -y \ | ||
gcc \ | ||
g++ \ | ||
gfortran \ | ||
libopenmpi-dev \ | ||
libhdf5-openmpi-dev \ | ||
python3-tk \ | ||
mesa-common-dev \ | ||
libgl1-mesa-dev \ | ||
libglu1-mesa-dev \ | ||
libosmesa6-dev \ | ||
xorg-dev | ||
- name: Install Python dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install wheel setuptools scons numpy mpi4py | ||
- name: Verify Python and Installed Packages | ||
run: | | ||
python --version | ||
python -m pip list | ||
- name: Build Cassiopee package | ||
run: | | ||
export CASSIOPEE=$GITHUB_WORKSPACE | ||
export MACHINE=ubuntu | ||
. $CASSIOPEE/Cassiopee/Envs/sh_Cassiopee_r8 | ||
cd $CASSIOPEE/Cassiopee | ||
echo -e "FREEMODULES='KCore XCore Converter Geom Transform Generator Post Initiator Connector Distributor2 Dist2Walls RigidMotion Compressor Modeler Intersector Apps CPlot'\nexport FREEMODULES\nFULLMODULES='KCore XCore Converter Geom Transform Generator Post Initiator Connector Distributor2 Dist2Walls RigidMotion Compressor Modeler Intersector Apps CPlot'\nexport FULLMODULES\nOTHERS=''" > $CASSIOPEE/Cassiopee/MODULES | ||
echo "PATH: $PATH" | ||
echo "LD_LIBRARY_PATH: $LD_LIBRARY_PATH" | ||
echo "PYTHONPATH: $PYTHONPATH" | ||
./install | ||
- name: Publish to PyPI | ||
env: | ||
TWINE_USERNAME: __token__ | ||
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} | ||
run: find -name "*.whl" -exec twine upload {} + | ||
|
||
# publish: | ||
# runs-on: ubuntu-latest | ||
# needs: build | ||
# steps: | ||
# - name: Checkout repository | ||
# uses: actions/checkout@v3 | ||
# | ||
# - name: Set up Python | ||
# uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: "3.12" | ||
# | ||
# - name: Publish to PyPI | ||
# env: | ||
# TWINE_USERNAME: __token__ | ||
# TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} | ||
# run: find -name "*.whl" -exec twine upload {} + |
This file contains 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