source: .circleci/config.yml @ c1347be

feature/autosinkfeature/cnnfeature/crepefix/ffmpeg5
Last change on this file since c1347be was c1347be, checked in by Paul Brossier <piem@piem.org>, 5 years ago

[ci] add flac to circleci

  • Property mode set to 100644
File size: 2.3 KB
RevLine 
[73f02cc]1apt-run: &apt-install
2  name: Install apt packages
3  command: |
[f70e181]4    sudo apt-get update
[c1347be]5    sudo apt-get -y install make sox pkg-config libavcodec-dev libavformat-dev libavresample-dev libavutil-dev libsndfile1-dev libsamplerate-dev libvorbis-dev libflac-dev
[73f02cc]6
[91ac33f]7pip-install: &pip-install
8  name: Install pip dependencies
9  command: |
[58cc68e]10    pip install --user -r requirements.txt
[91ac33f]11
[73f02cc]12build-wheel: &build-wheel
13  name: Build python wheel
14  command: |
15    pip wheel -v -v -v --wheel-dir=dist .
16
17install-wheel: &install-wheel
[a363759]18  name: Install python wheel
[73f02cc]19  command: |
[58cc68e]20    pip install --user dist/aubio*.whl
[73f02cc]21
22test-nose2: &test-nose2
23  name: Test python wheel
24  command: |
25    make create_test_sounds
[4103cb4]26    PATH=/home/circleci/.local/bin:$PATH nose2 -v
[73f02cc]27
[ab8bffa]28test-nose2-nosounds: &test-nose2-nosounds
29  name: Test python wheel
30  command: |
31    PATH=/home/circleci/.local/bin:$PATH nose2 -v
32
33uninstall-wheel: &uninstall-wheel
34  name: Uninstall python wheel
35  command: |
36    pip show -f aubio
37    pip uninstall --verbose --yes aubio
38
[73f02cc]39version: 2
40jobs:
[b34a3b4]41  build-27:
42    docker:
[a4aa960]43      - image: circleci/python:2.7
[c9701ff]44    steps:
45      - checkout
46      - run: *apt-install
47      - run: *pip-install
48      - run: *build-wheel
49      - run: *install-wheel
50      - run: *test-nose2
[ab8bffa]51      - run: *uninstall-wheel
[c9701ff]52      - store_artifacts:
53          path: dist/
54
55  build-36:
56    docker:
[a4aa960]57      - image: circleci/python:3.6
[73f02cc]58    steps:
59      - checkout
60      - run: *apt-install
[91ac33f]61      - run: *pip-install
[73f02cc]62      - run: *build-wheel
63      - run: *install-wheel
64      - run: *test-nose2
[ab8bffa]65      - run: *uninstall-wheel
[73f02cc]66      - store_artifacts:
67          path: dist/
68
[500f4c2]69  build-37:
70    docker:
71      - image: circleci/python:3.7
72    steps:
73      - checkout
74      - run: *apt-install
75      - run: *pip-install
76      - run: *build-wheel
77      - run: *install-wheel
78      - run: *test-nose2
[ab8bffa]79      - run: *uninstall-wheel
[500f4c2]80      - store_artifacts:
81          path: dist/
82
[f1baffd]83  build-37-nodeps:
84    docker:
85      - image: circleci/python:3.7
86    steps:
87      - checkout
88      - run: *pip-install
89      - run: *build-wheel
90      - run: *install-wheel
[ab8bffa]91      - run: *test-nose2-nosounds
92      - run: *uninstall-wheel
[f1baffd]93      - store_artifacts:
94          path: dist/
95
[73f02cc]96workflows:
97  version: 2
98
99  test-wheel:
100    jobs:
[c9701ff]101      - build-27
102      - build-36
[500f4c2]103      - build-37
[f1baffd]104      - build-37-nodeps
Note: See TracBrowser for help on using the repository browser.