Skip to content

Commit

Permalink
Use ubuntu image for dist stage
Browse files Browse the repository at this point in the history
  • Loading branch information
grihabor committed Sep 18, 2018
1 parent ab05de9 commit 4148486
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ stages:

sdist:
stage: dist
image: python:alpine
image: python:3
script:
- cp CMakeLists.txt.faiss faiss/CMakeLists.txt
- python setup.py sdist
Expand All @@ -16,9 +16,9 @@ sdist:

py35-wheel:
stage: dist
image: python:3.5-alpine
image: python:3.5
script:
- apk update && apk add g++ make cmake swig openblas-dev
- apt update && apt install g++ make cmake swig openblas-dev
- pip install --upgrade pip setuptools wheel
- cp CMakeLists.txt.faiss faiss/CMakeLists.txt
- python setup.py bdist_wheel
Expand All @@ -28,9 +28,9 @@ py35-wheel:

py36-wheel:
stage: dist
image: python:3.6-alpine
image: python:3.6
script:
- apk update && apk add g++ make cmake swig openblas-dev
- apt update && apt install g++ make cmake swig openblas-dev
- pip install --upgrade pip setuptools wheel
- cp CMakeLists.txt.faiss faiss/CMakeLists.txt
- python setup.py bdist_wheel
Expand All @@ -40,9 +40,9 @@ py36-wheel:

py37-wheel:
stage: dist
image: python:3.7-alpine
image: python:3.7
script:
- apk update && apk add g++ make cmake swig openblas-dev
- apt update && apt install g++ make cmake swig openblas-dev
- pip install --upgrade pip setuptools wheel
- cp CMakeLists.txt.faiss faiss/CMakeLists.txt
- python setup.py bdist_wheel
Expand Down

0 comments on commit 4148486

Please sign in to comment.