Skip to content

Commit 2b02671

Browse files
author
Clement Champetier
committed
tools: added appveyor and travis folders
1 parent 17529b7 commit 2b02671

11 files changed

+9
-9
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,22 +65,22 @@ before_script:
6565
- cd ${TRAVIS_BUILD_DIR}
6666

6767
# install coverage tools
68-
- if [ ${ENABLE_COVERAGE} ]; then ./tools/travis.gcc.install.coverage.sh; fi
68+
- if [ ${ENABLE_COVERAGE} ]; then ./tools/travis/gcc.install.coverage.sh; fi
6969

7070
# install avtranscoder dependencies
71-
- if [ ${TRAVIS_OS_NAME} = "linux" ]; then ./tools/travis.linux.install.deps.sh; fi
72-
- if [ ${TRAVIS_OS_NAME} = "osx" ]; then ./tools/travis.osx.install.deps.sh; fi
71+
- if [ ${TRAVIS_OS_NAME} = "linux" ]; then ./tools/travis/linux.install.deps.sh; fi
72+
- if [ ${TRAVIS_OS_NAME} = "osx" ]; then ./tools/travis/osx.install.deps.sh; fi
7373

7474
script:
7575
# build
76-
- ./tools/travis.build.sh
76+
- ./tools/travis/build.sh
7777

7878
# launch tests
79-
- if [ ${DEPENDENCY_MODE} = "ffmpeg" ]; then ./tools/travis.python.nosetests.sh; fi
79+
- if [ ${DEPENDENCY_MODE} = "ffmpeg" ]; then ./tools/travis/python.nosetests.sh; fi
8080

8181
after_success:
8282
# generate coverage for coveralls
83-
- if [ ${ENABLE_COVERAGE} ]; then ./tools/travis.gcc.generate.coverage.sh; fi
83+
- if [ ${ENABLE_COVERAGE} ]; then ./tools/travis/gcc.generate.coverage.sh; fi
8484

8585
before_deploy:
8686
# copy libbz2, external dependency of libavformat

appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ init:
1313

1414
before_build:
1515
- choco install -y swig
16-
- tools/appveyor.win.install.deps.bat
16+
- tools/appveyor/win.install.deps.bat
1717

1818
build_script:
19-
- tools/appveyor.build.bat
19+
- tools/appveyor/build.bat
2020

2121
before_test:
2222
- set PATH=C:\Python27\scripts;%PATH%
2323
- pip install nose
2424

2525
test_script:
2626
- cd ..
27-
- tools/appveyor.python.nosetests.bat
27+
- tools/appveyor/python.nosetests.bat
2828

2929
on_failure:
3030
- type "C:\ProgramData\chocolatey\logs\chocolatey.log"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)