Sfoglia il codice sorgente

Integrate shellcheck in CI

master
Arun Prakash Jana 4 anni fa
parent
commit
a34200a747
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: A75979F35C080412
1 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  1. +3
    -1
      .circleci/config.yml

+ 3
- 1
.circleci/config.yml Vedi File

@@ -11,7 +11,7 @@ jobs:
- run:
command: |
apt update -qq
apt install -y --no-install-recommends software-properties-common wget gpg-agent
apt install -y --no-install-recommends software-properties-common wget gpg-agent shellcheck
apt-add-repository -y ppa:jonathonf/gcc-9.1
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|apt-key add -
apt-add-repository -y "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-8 main"
@@ -50,6 +50,8 @@ jobs:
echo
echo "########## clang-tidy-8 ##########"
clang-tidy-8 src/* -- -I/usr/include -I/usr/include/ncursesw
echo "########## checllcheck ##########"
find plugins/ -type f -not -name "*.md" -exec shellcheck -e SC1090 {} +

package-and-publish:
machine: true


Loading…
Annulla
Salva