Skip to content

Commit

Permalink
CI: Stop targeting specific Py3 versions
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Feb 3, 2019
1 parent fe27342 commit b065470
Showing 1 changed file with 10 additions and 25 deletions.
35 changes: 10 additions & 25 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,62 +28,47 @@ Python 2.7 K40:
except:
- tags

Python 3.6 Titan X:
Python 3 Titan X:
script:
- py_version=3.6
- py_version=3
- EXTRA_INSTALL="numpy mako"
- export PYCUDA_DEFAULT_NVCC_FLAGS="-ccbin g++-7"
- echo "CUDADRV_LIB_DIR = ['/usr/lib/x86_64-linux-gnu/nvidia/current']" > siteconf.py
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
- "export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH"
- ". ./build-and-test-py-project.sh"
tags:
- python3.6
- python3
- nvidia-titan-x
except:
- tags

Python 3.6 Titan V:
Python 3 Titan V:
script:
- py_version=3.6
- py_version=3
- EXTRA_INSTALL="numpy mako"
- export PYCUDA_DEFAULT_NVCC_FLAGS="-ccbin g++-7"
- echo "CUDADRV_LIB_DIR = ['/usr/lib/x86_64-linux-gnu/nvidia/current']" > siteconf.py
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
- "export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH"
- ". ./build-and-test-py-project.sh"
tags:
- python3.6
- python3
- nvidia-titan-v
except:
- tags

Python 3.6 K40:
Python 3 K40:
script:
- py_version=3.6
- py_version=3
- EXTRA_INSTALL="numpy mako"
- export PYCUDA_DEFAULT_NVCC_FLAGS="-ccbin g++-7"
- echo "CUDADRV_LIB_DIR = ['/usr/lib/x86_64-linux-gnu/nvidia/current']" > siteconf.py
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
- "export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH"
- ". ./build-and-test-py-project.sh"
tags:
- python3.6
- nvidia-k40
except:
- tags

Python 3.7 K40:
script:
- py_version=3.7
- EXTRA_INSTALL="numpy mako"
- export PYCUDA_DEFAULT_NVCC_FLAGS="-ccbin g++-7"
- echo "CUDADRV_LIB_DIR = ['/usr/lib/x86_64-linux-gnu/nvidia/current']" > siteconf.py
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
- "export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH"
- ". ./build-and-test-py-project.sh"
tags:
- python3.7
- python3
- nvidia-k40
except:
- tags
Expand All @@ -94,7 +79,7 @@ Documentation:
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-docs.sh
- ". ./build-docs.sh"
tags:
- python3.5
- python3
- nvidia-titan-x
only:
- master

0 comments on commit b065470

Please sign in to comment.