From 52420213b47ce3b48d6c21a7db8fc05314c8e82f Mon Sep 17 00:00:00 2001 From: Samuel Date: Fri, 4 Dec 2020 15:00:46 -0600 Subject: [PATCH] Change references of Travis to GitHub Actions (#5536) [1.1] (#5539) Change references of Travis to GitHub Actions Backport https://github.com/borgbackup/borg/pull/5536 to 1.1-maint. --- MANIFEST.in | 3 +-- README.rst | 12 ++++++------ docs/development.rst | 6 +++--- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index db4483592..a496cf74a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,5 @@ # stuff we need to include into the sdist is handled automatically by # setuptools_scm - it includes all git-committed files. # but we want to exclude some committed files/dirs not needed in the sdist: -exclude .coafile .editorconfig .gitattributes .gitignore .mailmap .travis.yml Vagrantfile -prune .travis +exclude .coafile .editorconfig .gitattributes .gitignore .mailmap Vagrantfile prune .github diff --git a/README.rst b/README.rst index 7841cb79e..1a3893bd6 100644 --- a/README.rst +++ b/README.rst @@ -177,13 +177,13 @@ see ``docs/support.rst`` in the source distribution). :alt: Documentation :target: https://borgbackup.readthedocs.org/en/stable/ -.. |build| image:: https://api.travis-ci.org/borgbackup/borg.svg - :alt: Build Status - :target: https://travis-ci.org/borgbackup/borg +.. |build| image:: https://github.com/borgbackup/borg/workflows/CI/badge.svg?branch=1.1-maint + :alt: Build Status (1.1-maint) + :target: https://github.com/borgbackup/borg/actions -.. |coverage| image:: https://codecov.io/github/borgbackup/borg/coverage.svg?branch=master - :alt: Test Coverage - :target: https://codecov.io/github/borgbackup/borg?branch=master +.. |coverage| image:: https://codecov.io/github/borgbackup/borg/coverage.svg?branch=1.1-maint + :alt: Test Coverage (1.1-maint) + :target: https://codecov.io/github/borgbackup/borg?branch=1.1-maint .. |screencast_basic| image:: https://asciinema.org/a/133292.png :alt: BorgBackup Basic Usage diff --git a/docs/development.rst b/docs/development.rst index 7db254adf..8617fee9c 100644 --- a/docs/development.rst +++ b/docs/development.rst @@ -131,13 +131,13 @@ you run the tests. Continuous Integration ---------------------- -All pull requests go through Travis-CI_, which runs the tests on Linux +All pull requests go through `GitHub Actions`_, which runs the tests on Linux and Mac OS X as well as the flake8 style checker. Windows builds run on AppVeyor_, while additional Unix-like platforms are tested on Golem_. .. _AppVeyor: https://ci.appveyor.com/project/borgbackup/borg/ .. _Golem: https://golem.enkore.de/view/Borg/ -.. _Travis-CI: https://travis-ci.org/borgbackup/borg +.. _GitHub Actions: https://github.com/borgbackup/borg/actions Output and Logging ------------------ @@ -322,7 +322,7 @@ Checklist: next milestone. - Check if there are any pending fixes for security issues. - Find and fix any low hanging fruit left on the issue tracker. -- Check that Travis CI is happy. +- Check that GitHub Actions CI is happy. - Update ``CHANGES.rst``, based on ``git log $PREVIOUS_RELEASE..``. - Check version number of upcoming release in ``CHANGES.rst``. - Render ``CHANGES.rst`` via ``make html`` and check for markup errors.