Disable python3.5 and python3.6 for now

master
Rémi Calixte 2018-12-14 13:45:36 -05:00 committed by Maxime Mouial
parent 133b1e0f97
commit e0e003e769
1 changed files with 22 additions and 22 deletions

View File

@ -7,27 +7,27 @@ templates:
- image: golang:1.11.2 - image: golang:1.11.2
jobs: jobs:
python3.5: # python3.5:
<<: *job_template # <<: *job_template
steps: # steps:
- checkout # - checkout
- run: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh # - run: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- run: dep ensure # - run: dep ensure
- run: echo "deb http://deb.debian.org/debian unstable main" >> /etc/apt/sources.list # - run: echo "deb http://deb.debian.org/debian unstable main" >> /etc/apt/sources.list
- run: apt-get update && apt-get install -y python3.5-dev # - run: apt-get update && apt-get install -y python3.5-dev
- run: cp /usr/lib/x86_64-linux-gnu/pkgconfig/python-3.5.pc /usr/lib/x86_64-linux-gnu/pkgconfig/python3.pc # - run: cp /usr/lib/x86_64-linux-gnu/pkgconfig/python-3.5.pc /usr/lib/x86_64-linux-gnu/pkgconfig/python3.pc
- run: go test -cover # - run: go test -cover
python3.6: # python3.6:
<<: *job_template # <<: *job_template
steps: # steps:
- checkout # - checkout
- run: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh # - run: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- run: dep ensure # - run: dep ensure
- run: echo "deb http://deb.debian.org/debian unstable main" >> /etc/apt/sources.list # - run: echo "deb http://deb.debian.org/debian unstable main" >> /etc/apt/sources.list
- run: apt-get update && apt-get install -y python3.6-dev # - run: apt-get update && apt-get install -y python3.6-dev
- run: cp /usr/lib/x86_64-linux-gnu/pkgconfig/python-3.6.pc /usr/lib/x86_64-linux-gnu/pkgconfig/python3.pc # - run: cp /usr/lib/x86_64-linux-gnu/pkgconfig/python-3.6.pc /usr/lib/x86_64-linux-gnu/pkgconfig/python3.pc
- run: go test -cover # - run: go test -cover
python3.7: python3.7:
<<: *job_template <<: *job_template
@ -44,6 +44,6 @@ workflows:
version: 2 version: 2
build_test_deploy: build_test_deploy:
jobs: jobs:
- python3.5 # - python3.5
- python3.6 # - python3.6
- python3.7 - python3.7