From 1556ddfec7b1f6d170ceab73a5e4e6e7b7ba4cf4 Mon Sep 17 00:00:00 2001 From: John McNamara Date: Sun, 13 Feb 2022 23:59:53 +0000 Subject: [PATCH] Remove TravisCI. --- .github/PULL_REQUEST_TEMPLATE.md | 4 +-- .travis.yml | 42 -------------------------------- CONTRIBUTING.md | 4 +-- docs/src/running_the_tests.dox | 7 +++--- 4 files changed, 8 insertions(+), 49 deletions(-) delete mode 100644 .travis.yml diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 16b75012..00efc10f 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -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/ diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a5dc318f..00000000 --- a/.travis.yml +++ /dev/null @@ -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 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 805c8ded..47269d09 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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/ diff --git a/docs/src/running_the_tests.dox b/docs/src/running_the_tests.dox index 6f42c236..28c5e038 100644 --- a/docs/src/running_the_tests.dox +++ b/docs/src/running_the_tests.dox @@ -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