aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorRuben ten Hove <git@rhtenhove.nl>2022-06-28 01:50:39 +0000
committerRuben ten Hove <git@rhtenhove.nl>2022-06-28 01:50:39 +0000
commitb3edb657c2221f7d292931c8df04388c552737dd (patch)
tree2b0e69dd8f3ba9c0b64f283c1305fe47ea40f951 /.github
parenta1889db9bf1e83054e7978d22715c3e197882428 (diff)
downloadafl++-b3edb657c2221f7d292931c8df04388c552737dd.tar.gz
check python too
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/codeql-analysis.yaml (renamed from .github/workflows/codeql.yaml)4
-rw-r--r--.github/workflows/container.yaml4
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/codeql.yaml b/.github/workflows/codeql-analysis.yaml
index 9398df75..c9efb296 100644
--- a/.github/workflows/codeql.yaml
+++ b/.github/workflows/codeql-analysis.yaml
@@ -10,7 +10,7 @@ jobs:
codeql:
name: Analyze
runs-on: ubuntu-latest
- container: # We use a previous image as it's expected to have all the dependencies
+ container: # We use a previous image as it's expected to have all the dependencies
image: docker.io/aflplusplus/aflplusplus:dev
steps:
- name: Fix for using external repo in container build # https://github.com/actions/checkout/issues/760
@@ -20,7 +20,7 @@ jobs:
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
- languages: cpp
+ languages: cpp, python
- name: Build AFLplusplus # Rebuild because CodeQL needs to monitor the build process
env:
CC: gcc # These are symlinked to the version used in the container build
diff --git a/.github/workflows/container.yaml b/.github/workflows/container.yaml
index 0fd20dd7..81e2a3f8 100644
--- a/.github/workflows/container.yaml
+++ b/.github/workflows/container.yaml
@@ -12,7 +12,7 @@ on:
jobs:
build-and-test-amd64:
- name: Build and test amd64 image
+ name: Test amd64 image
runs-on: ubuntu-latest
steps:
- name: Checkout
@@ -30,7 +30,7 @@ jobs:
run: docker run --rm aflplusplus:amd64 bash -c "apt-get update && apt-get install -y libcmocka-dev && make -i tests"
push:
- name: Build and push amd64 and arm64 image
+ name: Push amd64 and arm64 images
runs-on: ubuntu-latest
needs:
- build-and-test-amd64