summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2023-01-31 17:52:10 +0100
committerAnne Jan Brouwer <brouwer@annejan.com>2023-01-31 17:52:10 +0100
commita9b81c7739db78a29123d45fc4896c7c95d35d7d (patch)
treeb5707b7720f776e97c23579ecd15e1b60ad1c426
parent1593b2c4d9250a75e6248df7c2f35989ecdb1c83 (diff)
Removed travis (no longer free) and lgtm (migrated to Github)
-rw-r--r--.travis.yml84
-rw-r--r--README.md3
2 files changed, 0 insertions, 87 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index a25bb06c..00000000
--- a/.travis.yml
+++ /dev/null
@@ -1,84 +0,0 @@
----
-language: cpp
-dist: bionic
-osx_image: xcode12.2
-sudo: true
-os:
- - linux
- - osx
-compiler:
- - gcc
- - clang
-env:
- global:
- secure: WaZq3f6KIAc0dnR4WOXYWDvUYiqlrzsZC/PQse47FnvC0oQC65J5w3kJOj/P26DgsUEqKQF3ukXogkM2mp5pS4+CMgivEmQmAbgQTtwcKpC5HPZxgI+8FgkCjcalJKWGWYoxlScNVNiKMs+89ApcSQE9kH9PZeUS9dukN2Php1U=
-before_install:
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo add-apt-repository -y ppa:beineri/opt-qt-5.15.2-bionic; fi
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
-addons:
- coverity_scan:
- project:
- name: IJHack/qtpass
- description: Build submitted via Travis CI
- notification_email: travis@qtpass.org
- build_command_prepend: qmake; make clean
- build_command: make
- branch_pattern: coverity_scan
-install:
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update; fi
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew ls | grep -wq qt5 || brew install qt5; fi
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew upgrade coreutils; fi
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then export PATH=$PATH:/usr/local/opt/qt5/bin; fi
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install pandoc; fi
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then nvm install 12; fi
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then nvm use 12; fi
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then npm install -g appdmg; fi
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get -qq update; fi
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get -qq install qt515base qt515tools qt515svg libgl1-mesa-dev; fi
- - if [[ "$TRAVIS_OS_NAME" = "linux" && "$CC" = "gcc" ]]; then sudo apt-get -qq install g++-6 gcc-6; fi
- - if [[ "$TRAVIS_OS_NAME" = "linux" && "$CC" = "gcc" ]]; then sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 60 --slave /usr/bin/g++ g++ /usr/bin/g++-6; fi
- - if [[ "$TRAVIS_OS_NAME" = "linux" && "$CC" = "gcc" ]]; then sudo update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-6 90; fi
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then npm install -g codecov; fi
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then gem install coveralls-lcov; fi
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get -qq install lcov; fi
-before_script:
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then source /opt/qt515/bin/qt515-env.sh; fi
- - "curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | sudo bash"
- - qmake -v
-script:
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then qmake CONFIG+=coverage -Wall qtpass.pro; fi
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then make -j$(nproc); fi
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then make -j$(nproc) coveralls TESTARGS="--platform offscreen"; fi
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then make distclean; fi
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then qmake CONFIG+=coverage -Wall qtpass.pro; fi
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then make -j$(nproc); fi
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then make -j$(nproc) codecov TESTARGS="--platform offscreen"; fi
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then make distclean; fi
- - qmake -Wall qtpass.pro
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then lrelease localization/localization_*; fi
- - make -j$(nproc)
- - make check TESTARGS="--platform offscreen"
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then macdeployqt main/QtPass.app; fi
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then sed 's/FAQ\.md/https:\/\/qtpass.org\/docs\/md_FAQ.html/' < README.md > README.faq; fi
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then sed 's/CONTRIBUTING\.md/https:\/\/qtpass.org\/docs\/md_CONTRIBUTING.html/' < README.faq > README.contrib; fi
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then sed 's/\[\!.*//' < README.contrib > README.clean; fi
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then pandoc --standalone --from=gfm --to=rtf --output=README.rtf README.clean; fi
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then appdmg appdmg.json qtpass-$(grep ^VERSION qtpass.pri | cut -d " " -f 6).dmg; fi
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then export VERSION=$(grep ^VERSION qtpass.pri | cut -d " " -f 6); fi
- - fossa init
-notifications:
- irc:
- channels:
- - chat.freenode.net#IJhack
- on_success: change
- on_failure: always
-deploy:
- provider: releases
- api_key:
- secure: O6LAl2R5QIe/mgQwG5/pzbdC8gS58wtGVF2ebTVGgYsCgY0nRjLZ19H7BiQrYjbbXs8yw6cQjA+xbxNiVsIVs+Dx9j/fy2JOBeBTrGijlWLcJPT6/Ab65EjI2T96XvI8/YejRmbgjIdXFfuKtD/V4MM12LrvrvktwJp00G9l1Go=
- file: "qtpass-$VERSION.dmg"
- on:
- repo: IJHack/qtpass
- tags: true
- condition: $TRAVIS_OS_NAME = osx && $CC = clang
- skip_cleanup: true
diff --git a/README.md b/README.md
index 6e1ac365..34aa988b 100644
--- a/README.md
+++ b/README.md
@@ -1,15 +1,12 @@
# QtPass
[![latest packaged version(s)](https://repology.org/badge/latest-versions/qtpass.svg)](https://repology.org/metapackage/qtpass)
-[![Build Status](https://travis-ci.com/IJHack/QtPass.svg?branch=master)](https://travis-ci.com/IJHack/QtPass)
[![Build status](https://ci.appveyor.com/api/projects/status/9rjnj72rdir7u9eg/branch/master?svg=true)](https://ci.appveyor.com/project/annejan/qtpass/branch/master)
[![Coverity scan](https://scan.coverity.com/projects/5266/badge.svg)](https://scan.coverity.com/projects/ijhack-qtpass)
[![Coverage Status](https://coveralls.io/repos/github/IJHack/QtPass/badge.svg)](https://coveralls.io/github/IJHack/QtPass)
[![codecov](https://codecov.io/gh/IJhack/QtPass/branch/master/graph/badge.svg)](https://codecov.io/gh/IJhack/QtPass)
[![CodeFactor](https://www.codefactor.io/repository/github/ijhack/qtpass/badge)](https://www.codefactor.io/repository/github/ijhack/qtpass)
[![Packaging status](https://repology.org/badge/tiny-repos/qtpass.svg)](https://repology.org/metapackage/qtpass)
-[![Language grade: C/C++](https://img.shields.io/lgtm/grade/cpp/g/IJHack/QtPass.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/IJHack/QtPass/context:cpp)
-[![Total alerts](https://img.shields.io/lgtm/alerts/g/IJHack/QtPass.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/IJHack/QtPass/alerts/)
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2FIJHack%2FQtPass.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2FIJHack%2FQtPass?ref=badge_shield)
[![Translation status](https://hosted.weblate.org/widgets/qtpass/-/qtpass/svg-badge.svg)](https://hosted.weblate.org/engage/qtpass/?utm_source=widget)
[![QMake Github Action](https://github.com/IJHack/QtPass/workflows/QMake/badge.svg)](https://github.com/IJHack/QtPass/actions)