diff options
-rw-r--r-- | .github/workflows/codeql-analysis.yaml (renamed from .github/workflows/codeql.yaml) | 4 | ||||
-rw-r--r-- | .github/workflows/container.yaml | 4 |
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 |