diff options
author | Toni <matzeton@googlemail.com> | 2021-08-08 16:59:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-08 16:59:36 +0200 |
commit | 8e996f7f7c8f411a4c597e23fbaaecf284b038b0 (patch) | |
tree | 8bf08cfbf85684a545e8cdc9cc3bfe9324afc2e8 /.github | |
parent | 3706267d68595f3b61b3f94363d983e682d027c7 (diff) |
Fixed broken SonarCloud-CI. (#1272)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 43d835039..8bd06cddd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,8 +13,11 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - - name: SonarCloud Scan - uses: SonarSource/sonarcloud-github-action@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
\ No newline at end of file + - name: Install dependencies + run: sudo apt-get install libpcap-dev libjson-c-dev libgcrypt20-dev + - name: Configure + run: ./autogen.sh + - name: Build + run: make all + - name: Test + run: ./tests/do.sh |