Compare commits

...

1 Commits

Author SHA1 Message Date
7a179005a9 One more try with the upload pipeline
Some checks failed
Build Packages / build:rpm (rocky8_nocuda) (push) Failing after 0s
Build Packages / build:rpm (rocky8_sls9) (push) Failing after 0s
Build Packages / build:rpm (rocky8) (push) Failing after 1s
Build Packages / build:rpm (rocky9) (push) Failing after 1s
Build Packages / build:rpm (ubuntu2204) (push) Failing after 1s
Build Packages / build:rpm (ubuntu2404) (push) Failing after 1s
Build Packages / Build documentation (push) Successful in 1m19s
Build Packages / Unit tests (push) Successful in 50m23s
Build Packages / Generate python client (push) Failing after 31s
2025-09-18 22:09:43 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -71,9 +71,6 @@ jobs:
TWINE_USERNAME: "__token__" # Username for Twine when using token-based auth
TWINE_PASSWORD: ${{ secrets.PIP_REPOSITORY_API_TOKEN }} # Use the secret for authentication
run: |
python3 -m venv .twine
source .twine/bin/activate
pip3 install twine
twine upload --repository-url https://gitea.psi.ch/api/packages/mx/pypi dist/*
documentation:
name: Build documentation

View File

@@ -8,6 +8,8 @@ ARG EIGEN_TAG=3.4.0
# Update base and install common utilities
RUN dnf -y update && \
dnf -y install epel-release && \
dnf -y update && \
dnf -y install --enablerepo=devel \
dnf-plugins-core \
epel-release \
@@ -58,6 +60,7 @@ RUN dnf -y update && \
python3-pip \
python3-setuptools \
python3-wheel \
twine \
freetype-devel && \
dnf clean all && rm -rf /var/cache/dnf