Changeset b0f93c4 in mod_gnutls
- Timestamp:
- Oct 10, 2020, 5:49:17 AM (6 months ago)
- Branches:
- asyncio
- Children:
- ec33c23
- Parents:
- 6cec675
- git-author:
- Fiona Klute <fiona.klute@…> (10/10/20 05:45:04)
- git-committer:
- Fiona Klute <fiona.klute@…> (10/10/20 05:49:17)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
.github/workflows/analysis.yaml
r6cec675 rb0f93c4 14 14 15 15 jobs: 16 16 17 clang: 17 18 runs-on: ubuntu-20.04 … … 24 25 export DEBIAN_FRONTEND=noninteractive 25 26 apt-get update 26 apt-get -y install python3-yaml apache2-bin apache2-dev curl gnutls-bin libapr1-dev libgnutls28-dev opensslpkg-config procps clang-10 clang-tools-10 libmsv-dev27 apt-get -y install python3-yaml apache2-bin apache2-dev gnutls-bin libapr1-dev libgnutls28-dev pkg-config procps clang-10 clang-tools-10 libmsv-dev 27 28 - name: find usable IPs for tests 28 29 run: | … … 51 52 sarif_file: ${{ env.SARIF_DIR }} 52 53 checkout_path: ${{ env.CONTAINER_WORKSPACE }} 54 55 cppcheck: 56 runs-on: ubuntu-20.04 57 container: debian:sid 58 name: cppcheck 59 steps: 60 - uses: actions/checkout@v2 61 - name: install dependencies 62 run: | 63 export DEBIAN_FRONTEND=noninteractive 64 apt-get update 65 apt-get -y install python3-yaml apache2-bin apache2-dev gnutls-bin libapr1-dev libgnutls28-dev libmsv-dev pkg-config procps bear cppcheck 66 - name: autoreconf 67 run: autoreconf -fiv 68 - name: configure 69 run: ./configure APACHE_MUTEX=pthread 70 - name: make and create compile_commands.json 71 run: bear make -j4 72 - name: cppcheck 73 run: | 74 cppcheck --project=compile_commands.json -DAF_UNIX=1 --enable=warning,style,unusedFunction
Note: See TracChangeset
for help on using the changeset viewer.