Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Do not call setup.py #1048

Merged
merged 5 commits into from
Nov 10, 2023

Do not install silx

368b17f
Select commit
Loading
Failed to load commit list.
Merged

[CI] Do not call setup.py #1048

Do not install silx
368b17f
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Nov 10, 2023 in 5m 26s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #1048 [CI] Do not call setup.py.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Focal)
Build Configuration
{
  "dist": "focal",
  "language": "python",
  "matrix": {
    "include": [
      {
        "python": 3.8,
        "os": "linux",
        "arch": "ppc64le",
        "env": [
          "BUILD_COMMAND=bdist_wheel",
          "QT_BINDING=PyQt5"
        ]
      }
    ]
  },
  "branches": {
    "only": [
      "master"
    ]
  },
  "cache": {
    "apt": true
  },
  "addons": {
    "apt": {
      "packages": [
        "libgl1-mesa-dev",
        "libegl1-mesa",
        "libxkbcommon-x11-0",
        "libxkbcommon0",
        "libxkbcommon-dev",
        "libxcb-icccm4",
        "libxcb-image0",
        "libxcb-shm0",
        "libxcb-keysyms1",
        "libxcb-randr0",
        "libxcb-render-util0",
        "libxcb-render0",
        "libxcb-shape0",
        "libxcb-sync1",
        "libxcb-xfixes0",
        "libxcb-xinerama0",
        "libxcb-xkb1",
        "libxcb1",
        "python3-pyqt5"
      ]
    }
  },
  "services": [
    "xvfb"
  ],
  "before_install": [
    "source ./ci/travis_osx.sh",
    "if [ \"$TRAVIS_OS_NAME\" == \"linux\" ]; then export DISPLAY=:99.0; fi"
  ],
  "install": [
    "python -m pip install --upgrade pip",
    "pip install --upgrade setuptools",
    "pip install --upgrade wheel",
    "if [ \"$TRAVIS_CPU_ARCH\" == \"ppc64le\" ]; then pip install numpy --pre --trusted-host www.silx.org --find-links http://www.silx.org/pub/wheelhouse/; else pip install --upgrade numpy; fi",
    "python ./ci/info_platform.py",
    "pip list",
    "python setup.py $BUILD_COMMAND",
    "ls dist"
  ],
  "script": [
    "pip install --upgrade setuptools",
    "pip install --upgrade pip",
    "if [ \"$TRAVIS_CPU_ARCH\" == \"ppc64le\" ]; then pip install matplotlib==3.7.1 --pre --trusted-host www.silx.org --find-links http://www.silx.org/pub/wheelhouse/; else pip install matplotlib; fi",
    "if [ \"$TRAVIS_CPU_ARCH\" == \"ppc64le\" ]; then pip install h5py==3.8.0 --pre --trusted-host www.silx.org --find-links http://www.silx.org/pub/wheelhouse/; else pip install h5py; fi",
    "for filename in dist/PyMca5*.*; do\n  echo \"\\nInstall $filename\"\n  pip install --pre $filename $PIP_INSTALL_EXTRA_ARGS\ndone\n",
    "python ci/info_platform.py",
    "pip list",
    "cd ..",
    "python -m PyMca5.tests.TestAll"
  ],
  "group": "stable"
}