Remove TravisCI.

This commit is contained in:
John McNamara 2022-02-13 23:59:53 +00:00
parent e807235b8b
commit 1556ddfec7
4 changed files with 8 additions and 49 deletions

View File

@ -85,9 +85,9 @@ If you have `valgrind` installed you can use the test suite to check for memory
```
When you push your changes they will also be tested automatically using
[Travis CI][travis].
[GitHub Actions][actions].
[Travis]: https://travis-ci.org/jmcnamara/libxlsxwriter/
[actions]: https://github.com/jmcnamara/libxlsxwriter/actions
[pytest]: http://pytest.org/

View File

@ -1,42 +0,0 @@
language: c
dist: xenial
compiler:
- clang
- gcc
env:
- CFLAGS='-Werror'
- NO_VALGRIND=1 USE_STANDARD_TMPFILE=1 CFLAGS='-Werror'
- NO_VALGRIND=1 CFLAGS='-Werror -m32'
- NO_VALGRIND=1 USE_SYSTEM_MINIZIP=1 CFLAGS='-Werror'
- NO_VALGRIND=1 USE_DTOA_LIBRARY=1 CFLAGS='-Werror'
- NO_VALGRIND=1 USE_NO_MD5=1 CFLAGS='-Werror'
- NO_VALGRIND=1 USE_OPENSSL_MD5=1 CFLAGS='-Werror'
- NO_VALGRIND=1 USE_FMEMOPEN=1 CFLAGS='-Werror'
addons:
apt:
update: true
packages:
- gcc-multilib
- libminizip-dev
- libssl-dev
- valgrind
- zlib1g-dev
- zlib1g-dev:i386
before_install:
- sudo pip install pytest
script:
- make V=1
- make test_functional V=1
- make test_unit V=1
- make examples V=1
- make test_valgrind V=1
- sudo make install V=1
- sudo make uninstall V=1
- make test_cmake V=1
- make clean V=1

View File

@ -181,9 +181,9 @@ If you have `valgrind` installed you can use the test suite to check for memory
```
When you push your changes they will also be tested automatically using
[Travis CI][travis].
[GitHub Actions][actions].
[Travis]: https://travis-ci.org/jmcnamara/libxlsxwriter/
[actions]: https://github.com/jmcnamara/libxlsxwriter/actions
[pytest]: http://pytest.org/

View File

@ -86,10 +86,11 @@ Then run the tests:
make test_valgrind
@section tests_travis Travis Continuous Integration
@section tests_ci GitHub Actions Continuous Integration
Libxlsxwriter is configured to run all tests in [Travis Continuous
Integration](https://travis-ci.org/jmcnamara/libxlsxwriter) for each commit.
Libxlsxwriter is configured to run all tests with [GitHub Actions Continuous
Integration](https://github.com/jmcnamara/libxlsxwriter/actions) for each
commit.
Next: @ref faq