Changes in .circleci/config.yml [78a706e:548f60d]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
.circleci/config.yml
r78a706e r548f60d 3 3 command: | 4 4 sudo apt-get update 5 sudo apt-get -y install make sox pkg-config libavcodec-dev libavformat-dev libavresample-dev libavutil-dev libsndfile1-dev libsamplerate-dev libvorbis-dev5 sudo apt-get -y install make sox pkg-config libavcodec-dev libavformat-dev libavresample-dev libavutil-dev libsndfile1-dev libsamplerate-dev 6 6 7 7 pip-install: &pip-install … … 20 20 pip install --user dist/aubio*.whl 21 21 22 test- nose2: &test-nose222 test-pytest: &test-pytest 23 23 name: Test python wheel 24 24 command: | 25 25 make create_test_sounds 26 PATH=/home/circleci/.local/bin:$PATH nose2-v26 PATH=/home/circleci/.local/bin:$PATH pytest -v 27 27 28 test- nose2-nosounds: &test-nose2-nosounds28 test-pytest-nosounds: &test-pytest-nosounds 29 29 name: Test python wheel 30 30 command: | 31 PATH=/home/circleci/.local/bin:$PATH nose2-v31 PATH=/home/circleci/.local/bin:$PATH pytest -v 32 32 33 33 uninstall-wheel: &uninstall-wheel … … 48 48 - run: *build-wheel 49 49 - run: *install-wheel 50 - run: *test- nose250 - run: *test-pytest 51 51 - run: *uninstall-wheel 52 52 - store_artifacts: … … 62 62 - run: *build-wheel 63 63 - run: *install-wheel 64 - run: *test- nose264 - run: *test-pytest 65 65 - run: *uninstall-wheel 66 66 - store_artifacts: … … 76 76 - run: *build-wheel 77 77 - run: *install-wheel 78 - run: *test- nose278 - run: *test-pytest 79 79 - run: *uninstall-wheel 80 80 - store_artifacts: … … 89 89 - run: *build-wheel 90 90 - run: *install-wheel 91 - run: *test- nose2-nosounds91 - run: *test-pytest-nosounds 92 92 - run: *uninstall-wheel 93 93 - store_artifacts:
Note: See TracChangeset
for help on using the changeset viewer.