diff options
Diffstat (limited to 'gl')
0 files changed, 0 insertions, 0 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml deleted file mode 100644 index 9de367e..0000000 --- a/.github/workflows/codeql-analysis.yml +++ /dev/null | |||
@@ -1,71 +0,0 @@ | |||
1 | # For most projects, this workflow file will not need changing; you simply need | ||
2 | # to commit it to your repository. | ||
3 | # | ||
4 | # You may wish to alter this file to override the set of languages analyzed, | ||
5 | # or to provide custom queries or build logic. | ||
6 | # | ||
7 | # ******** NOTE ******** | ||
8 | # We have attempted to detect the languages in your repository. Please check | ||
9 | # the `language` matrix defined below to confirm you have the correct set of | ||
10 | # supported CodeQL languages. | ||
11 | # | ||
12 | name: "CodeQL" | ||
13 | |||
14 | on: | ||
15 | push: | ||
16 | branches: [ master ] | ||
17 | pull_request: | ||
18 | # The branches below must be a subset of the branches above | ||
19 | branches: [ master ] | ||
20 | schedule: | ||
21 | - cron: '15 18 * * 0' | ||
22 | |||
23 | jobs: | ||
24 | analyze: | ||
25 | name: Analyze | ||
26 | runs-on: ubuntu-latest | ||
27 | permissions: | ||
28 | actions: read | ||
29 | contents: read | ||
30 | security-events: write | ||
31 | |||
32 | strategy: | ||
33 | fail-fast: false | ||
34 | matrix: | ||
35 | language: [ 'cpp' ] | ||
36 | # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] | ||
37 | # Learn more: | ||
38 | # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed | ||
39 | |||
40 | steps: | ||
41 | - name: Checkout repository | ||
42 | uses: actions/checkout@v2 | ||
43 | |||
44 | # Initializes the CodeQL tools for scanning. | ||
45 | - name: Initialize CodeQL | ||
46 | uses: github/codeql-action/init@v1 | ||
47 | with: | ||
48 | languages: ${{ matrix.language }} | ||
49 | # If you wish to specify custom queries, you can do so here or in a config file. | ||
50 | # By default, queries listed here will override any specified in a config file. | ||
51 | # Prefix the list here with "+" to use these queries and those in the config file. | ||
52 | # queries: ./path/to/local/query, your-org/your-repo/queries@main | ||
53 | |||
54 | - name: Install packages | ||
55 | run: | | ||
56 | sudo apt-get install -y --no-install-recommends m4 gettext automake autoconf make build-essential | ||
57 | sudo apt-get install -y --no-install-recommends perl autotools-dev libdbi-dev libldap2-dev libpq-dev \ | ||
58 | libmysqlclient-dev libradcli-dev libkrb5-dev libdbi0-dev \ | ||
59 | libdbd-sqlite3 libssl-dev libcurl4-openssl-dev liburiparser-dev | ||
60 | |||
61 | - name: Configure build | ||
62 | run: | | ||
63 | ./tools/setup | ||
64 | ./configure --enable-libtap | ||
65 | |||
66 | - name: Build | ||
67 | run: | | ||
68 | make | ||
69 | |||
70 | - name: Perform CodeQL Analysis | ||
71 | uses: github/codeql-action/analyze@v1 | ||
diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 3d9fe64..0000000 --- a/.travis.yml +++ /dev/null | |||
@@ -1,98 +0,0 @@ | |||
1 | sudo: required | ||
2 | dist: xenial | ||
3 | language: c | ||
4 | |||
5 | env: | ||
6 | global: | ||
7 | # This is the encrypted COVERITY_SCAN_TOKEN, created via the "travis | ||
8 | # encrypt" command using the project repository's public key. | ||
9 | - secure: "ggJ9c/VfKcwtrwz/My+ne4My7D8g3qi3vz5Hh+yLiri0+oIXCy313ZD6ssIEY/5beQZEOnuHhBgBJd/Y3clSQNc2M9fRNc+wxOkIO992lgnY0MZJN3y9MLfpqUbTClhU9Fst0qXQqGpI6UI8yz1tj7yKi7DPrycJLRrjMpyTfyo=" | ||
10 | |||
11 | matrix: | ||
12 | include: | ||
13 | - compiler: "gcc" | ||
14 | os: linux | ||
15 | env: | ||
16 | - PLATFORM=linux BITS=64 HOST=x86_64 | ||
17 | addons: | ||
18 | coverity_scan: | ||
19 | project: | ||
20 | name: "monitoring-plugins/monitoring-plugins" | ||
21 | description: "Monitoring Plugins" | ||
22 | notification_email: team@monitoring-plugins.org | ||
23 | build_command_prepend: tools/setup && ./configure | ||
24 | build_command: make | ||
25 | branch_pattern: coverity.* | ||
26 | - compiler: "clang" | ||
27 | os: linux | ||
28 | env: | ||
29 | - PLATFORM=linux BITS=64 HOST=x86_64 | ||
30 | |||
31 | before_install: | ||
32 | # Trusty related fixed | ||
33 | # multiverse is no on trusty activated (https://github.com/travis-ci/travis-ci/issues/4979) | ||
34 | - sudo apt-get install -qq --no-install-recommends software-properties-common | ||
35 | - sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu/ trusty multiverse" && sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu/ trusty-updates multiverse" | ||
36 | # /etc/hosts has IPv6 hosts (https://github.com/travis-ci/travis-ci/issues/4978) | ||
37 | - sudo [ $(ip addr show | grep "inet6 ::1" | wc -l) -eq "0" ] || sudo sed -i '/^::1/d' /etc/hosts | ||
38 | # Trusty has running ntpd on localhost, but we don't like that for our tests | ||
39 | - "sudo killall -9 ntpd ||:" | ||
40 | # Trusty has no swap, lets create some | ||
41 | - sudo fallocate -l 20M /swapfile; sudo chmod 600 /swapfile; sudo mkswap /swapfile; sudo swapon /swapfile | ||
42 | - sudo apt-get update -qq | ||
43 | - sudo apt-get purge -qq gawk | ||
44 | |||
45 | install: | ||
46 | - sudo apt-get install -qq --no-install-recommends perl autotools-dev libdbi-dev libldap2-dev libpq-dev libmysqlclient-dev libradcli-dev libkrb5-dev libnet-snmp-perl procps | ||
47 | - sudo apt-get install -qq --no-install-recommends libdbi0-dev libdbd-sqlite3 libssl-dev dnsutils snmp-mibs-downloader libsnmp-perl snmpd | ||
48 | - sudo apt-get install -qq --no-install-recommends fping snmp netcat smbclient fping pure-ftpd apache2 ssl-cert postfix libhttp-daemon-ssl-perl | ||
49 | - sudo apt-get install -qq --no-install-recommends libdbd-sybase-perl libnet-dns-perl | ||
50 | - sudo apt-get install -qq --no-install-recommends slapd ldap-utils | ||
51 | - sudo apt-get install -qq --no-install-recommends autoconf automake | ||
52 | - sudo apt-get install -qq --no-install-recommends faketime | ||
53 | - sudo apt-get install -qq --no-install-recommends libmonitoring-plugin-perl | ||
54 | - sudo apt-get install -qq --no-install-recommends libcurl4-openssl-dev | ||
55 | - sudo apt-get install -qq --no-install-recommends liburiparser-dev | ||
56 | - sudo apt-get install -qq --no-install-recommends squid | ||
57 | # Trusty related dependencies (not yet provided) | ||
58 | - test "$(dpkg -l | grep -E "mysql-(client|server)-[0-9].[0-9]" | grep -c ^ii)" -gt 0 || sudo apt-get install -qq --no-install-recommends mariadb-client mariadb-server | ||
59 | # enable ssl apache | ||
60 | - sudo a2enmod ssl | ||
61 | - sudo a2ensite default-ssl | ||
62 | - sudo make-ssl-cert generate-default-snakeoil --force-overwrite | ||
63 | - sudo service apache2 reload | ||
64 | - sudo cp tools/squid.conf /etc/squid/squid.conf | ||
65 | - sudo service squid reload | ||
66 | - sudo service mysql restart | ||
67 | |||
68 | before_script: | ||
69 | # ensure we have a test database in place for tests | ||
70 | - mysql -e "create database IF NOT EXISTS test;" -uroot | ||
71 | # Detect LDAP configuration (seems volatile on trusty env) | ||
72 | - sed -e 's/cn=admin,dc=nodomain/'$(sudo /usr/sbin/slapcat|grep ^dn:|grep cn=|awk '{print $2}')'/' -i plugins/t/NPTest.cache.travis | ||
73 | - tools/setup | ||
74 | - ./configure --enable-libtap | ||
75 | - make | ||
76 | - export NPTEST_ACCEPTDEFAULT=1 | ||
77 | - export NPTEST_CACHE="$(pwd)/plugins/t/NPTest.cache.travis" | ||
78 | - ssh-keygen -t rsa -N "" -f ~/.ssh/id_rsa | ||
79 | - cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys | ||
80 | - ssh-keyscan localhost >> ~/.ssh/known_hosts | ||
81 | - touch ~/.ssh/config | ||
82 | - sudo rm -f /usr/share/mibs/ietf/SNMPv2-PDU /usr/share/mibs/ietf/IPSEC-SPD-MIB /usr/share/mibs/ietf/IPATM-IPMC-MIB /usr/share/mibs/iana/IANA-IPPM-METRICS-REGISTRY-MIB | ||
83 | - sudo mkdir -p /var/lib/snmp/mib_indexes | ||
84 | - sudo mkdir /media/ramdisk && sudo chmod 777 /media/ramdisk && sudo mount -t tmpfs -o size=20% none /media/ramdisk | ||
85 | - sed "/NP_HOST_TLS_CERT/s/.*/'NP_HOST_TLS_CERT' => '$(hostname)',/" -i $NPTEST_CACHE | ||
86 | |||
87 | script: | ||
88 | - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then make test; fi | ||
89 | |||
90 | notifications: | ||
91 | irc: | ||
92 | channels: | ||
93 | - "chat.freenode.net#Monitoring-Plugins" | ||
94 | on_success: change | ||
95 | on_failure: always | ||
96 | skip_join: true | ||
97 | email: | ||
98 | # - team@monitoring-plugins.org | ||