Skip to content

Commit

Permalink
Merge pull request #200 from vincentcasseau/main
Browse files Browse the repository at this point in the history
PyPI: fix install on azure with prodmode 2
  • Loading branch information
vincentcasseau authored Oct 15, 2024
2 parents 6938302 + 5c37c22 commit b32ba4f
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 2 deletions.
91 changes: 91 additions & 0 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
name: publish PyPI

on:
push:
tags:
- 'v*'
branches:
- 'main'

jobs:
build:
runs-on: ubuntu-20.04
# 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.8"
# 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 twine auditwheel 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=azure
. $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
./install
- name: Publish to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
export CASSIOPEE=$GITHUB_WORKSPACE
export MACHINE=azure
. $CASSIOPEE/Cassiopee/Envs/sh_Cassiopee_r8
for wheel in $(find $CASSIOPEE/Dist/bin/$ELSAPROD/pip-ephem-wheel-cache-* -type f -name "*.whl"); do
echo "$wheel"
auditwheel -v repair "$wheel"
done
find $CASSIOPEE/Dist/bin/$ELSAPROD/pip-ephem-wheel-cache-* -type f -name "*manylinux*.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 {} +
2 changes: 1 addition & 1 deletion Cassiopee/KCore/install
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ if [ "$PRODMODE" = "" ]; then
fi

# Compilation et installation
if [ $PRODMODE -le 1 ]; then
if [ $PRODMODE -le 2 ]; then
sconsf=`which scons`
if [ "$OMP_NUM_THREADS" != "" ]; then
export SCONSOPT="-j $OMP_NUM_THREADS"
Expand Down
2 changes: 1 addition & 1 deletion Cassiopee/XCore/install
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fi
#python createLinks.py

# Compilation et installation
if [ $PRODMODE -le 1 ]; then
if [ $PRODMODE -le 2 ]; then
sconsf=`which scons`
if [ "$OMP_NUM_THREADS" != "" ]; then
export SCONSOPT="-j $OMP_NUM_THREADS"
Expand Down

0 comments on commit b32ba4f

Please sign in to comment.