Skip to content

fix library_dir position

6c57fea
Select commit
Loading
Failed to load commit list.
Open

add library_dirs to extention #258

fix library_dir position
6c57fea
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Jan 10, 2025 in 2m 34s

Build Failed

The build failed. This is a change from the previous build, which passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #258 add library_dirs to extention.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job ENV OS State
905.1 CC=gcc-6 Linux failed
905.2 CC=gcc-6 Linux failed

Build Configuration

Build Option Setting
Language Generic
Operating System Linux (Xenial)
Build Configuration
{
  "language": "generic",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "notifications": {
    "email": [
      {
        "enabled": false
      }
    ]
  },
  "env": [
    "global={:CC=>\"gcc-6\"}={:CXX=>\"g++-6\"}={:NO_RHINO=>\"1\"}={:PKG_NAME=>\"ptsa\"}={:PY_IGNORE_IMPORTMISMATCH=>\"1\"} jobs={:PYTHON_VERSION=>\"3.10\"}={:PYTHON_VERSION=>\"3.11\"}"
  ],
  "before_install": [
    "wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh",
    "bash miniconda.sh -b -p $HOME/miniconda",
    "export PATH=\"$HOME/miniconda/bin:$PATH\"",
    "hash -r",
    "conda config --set always_yes yes --set changeps1 no",
    "conda update -q conda",
    "conda info -a",
    "conda install -q python=$PYTHON_VERSION conda-build anaconda-client"
  ],
  "install": [
    "conda install -y numpy=1.24 scipy xarray h5py netcdf4 swig>=4.1.0 traits",
    "if [[ \"$PYTHON_VERSION\" == \"3.7\" ]]; then conda install 'xarray<0.20'; fi",
    "conda install -y -c conda-forge pybind11 fftw==3.3.10",
    "pip install -r requirements.txt",
    "pip install pytest pytest-cov codecov --ignore-installed certifi"
  ],
  "addons": {
    "apt": {
      "sources": [
        {
          "name": "ubuntu-toolchain-r-test"
        }
      ],
      "packages": [
        "gcc-6",
        "g++-6",
        "libfftw3-dev"
      ]
    }
  },
  "script": [
    "python setup.py install",
    "cd tests",
    "python run.py --import-mode=append",
    "cd .."
  ],
  "after_success": [
    "codecov"
  ],
  "deploy": [
    {
      "provider": "script",
      "script": "maint/deploy.sh",
      "on": {
        "tags": true
      },
      "skip_cleanup": true
    }
  ]
}