Skip to content

keshan001/text

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

apt-run: &apt-install name: Install apt packages command: | sudo apt-get update sudo apt-get -y install make sox pkg-config libavcodec-dev libavformat-dev libavresample-dev libavutil-dev libsndfile1-dev libsamplerate-dev librubberband-dev libvorbis-dev libflac-dev

pip-install: &pip-install name: Install pip dependencies command: | pip install --user -r requirements.txt

build-wheel: &build-wheel name: Build python wheel command: | pip wheel -v -v -v --wheel-dir=dist .

install-wheel: &install-wheel name: Install python wheel command: | pip install --user dist/aubio*.whl

test-pytest: &test-pytest name: Test python wheel command: | make create_test_sounds PATH=/home/circleci/.local/bin:$PATH pytest -v

test-pytest-nosounds: &test-pytest-nosounds name: Test python wheel command: | PATH=/home/circleci/.local/bin:$PATH pytest -v

uninstall-wheel: &uninstall-wheel name: Uninstall python wheel command: | pip show -f aubio pip uninstall --verbose --yes aubio

version: 2 jobs: build-27: docker: - image: cimg/python:2.7 steps: - checkout - run: *apt-install - run: *pip-install - run: *build-wheel - run: *install-wheel - run: *test-pytest - run: *uninstall-wheel - store_artifacts: path: dist/

build-36: docker: - image: cimg/python:3.6 steps: - checkout - run: *apt-install - run: *pip-install - run: *build-wheel - run: *install-wheel - run: *test-pytest - run: *uninstall-wheel - store_artifacts: path: dist/

build-310: docker: - image: cimg/python:3.10 steps: - checkout - run: *apt-install - run: *pip-install - run: *build-wheel - run: *install-wheel - run: *test-pytest - run: *uninstall-wheel - store_artifacts: path: dist/

build-310-nodeps: docker: - image: cimg/python:3.10 steps: - checkout - run: *pip-install - run: *build-wheel - run: *install-wheel - run: *test-pytest-nosounds - run: *uninstall-wheel - store_artifacts: path: dist/

workflows: version: 2

test-wheel: jobs: - build-27 - build-36 - build-310 - build-310-nodeps

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors