mirror of
https://github.com/YuzuZensai/spleeter.git
synced 2026-01-06 04:32:43 +00:00
feat: add circleci configuration
This commit is contained in:
25
.circleci/config.yml
Normal file
25
.circleci/config.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
version: 2
|
||||
jobs:
|
||||
test:
|
||||
docker:
|
||||
- image: circleci/python:3.6.1
|
||||
working_directory: ~/spleeter
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: install spleeter
|
||||
command: pip install .
|
||||
- run:
|
||||
name: test separation
|
||||
command: spleeter separate -i audio_example.mp3 -o .
|
||||
upload:
|
||||
docker:
|
||||
- image: circleci/python:3.6.1
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: package
|
||||
command: python setup.py bdist
|
||||
- run:
|
||||
name: upload to PyPi
|
||||
command: pip install twine && twine upload dist/*
|
||||
Reference in New Issue
Block a user