Skip to content

Commit

Permalink
Remove unused .travis.yml file
Browse files Browse the repository at this point in the history
GitHub Actions replaced the Travis CI two years ago. Add the checks for
carriage returns and valid XML to the new CI config.
  • Loading branch information
jwakely committed Jan 29, 2024
1 parent 97cae0d commit 6adf88c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 65 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/check-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,19 @@ jobs:
- name: Compile binary programs
run: make pgms

- name: Check for carriage returns
run: |
if grep -IUrl --exclude-dir=.git . -e $'\r'; then
echo "Sorry, carriage returns are not allowed in the repo."
exit 1
fi
- name: XML validation
run: |
sudo apt-get install -y libxml2-utils
for i in xml/issue*.xml ; do
xmllint --noout --nowarning --dtdvalid xml/lwg-issue.dtd $i
done
- name: Generate HTML lists
run: make lists
65 changes: 0 additions & 65 deletions .travis.yml

This file was deleted.

0 comments on commit 6adf88c

Please sign in to comment.