aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorRuben ten Hove <git@rhtenhove.nl>2022-06-28 15:59:56 +0000
committerRuben ten Hove <git@rhtenhove.nl>2022-06-28 15:59:56 +0000
commit3e65e1a029c44b33a77ca04724335ee3ecd30e67 (patch)
tree76b76e4b93816a5eee50b859666939582dca1e1e /.github
parentb3edb657c2221f7d292931c8df04388c552737dd (diff)
downloadAFLplusplus-3e65e1a029c44b33a77ca04724335ee3ecd30e67.tar.gz
fix test using test specific build
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/codeql-analysis.yml (renamed from .github/workflows/codeql-analysis.yaml)2
-rw-r--r--.github/workflows/container.yml (renamed from .github/workflows/container.yaml)11
2 files changed, 10 insertions, 3 deletions
diff --git a/.github/workflows/codeql-analysis.yaml b/.github/workflows/codeql-analysis.yml
index c9efb296..ba6792b1 100644
--- a/.github/workflows/codeql-analysis.yaml
+++ b/.github/workflows/codeql-analysis.yml
@@ -7,7 +7,7 @@ on:
branches: [stable, dev]
jobs:
- codeql:
+ analyze:
name: Analyze
runs-on: ubuntu-latest
container: # We use a previous image as it's expected to have all the dependencies
diff --git a/.github/workflows/container.yaml b/.github/workflows/container.yml
index 81e2a3f8..8836997d 100644
--- a/.github/workflows/container.yaml
+++ b/.github/workflows/container.yml
@@ -23,11 +23,18 @@ jobs:
uses: docker/build-push-action@v3
with:
context: .
- tags: aflplusplus:amd64
+ tags: aflplusplus:test-amd64
load: true
cache-to: type=gha,mode=max
+ build-args: |
+ TEST_BUILD=1
- name: Test amd64
- run: docker run --rm aflplusplus:amd64 bash -c "apt-get update && apt-get install -y libcmocka-dev && make -i tests"
+ run: >
+ docker run --rm aflplusplus:test-amd64 bash -c "
+ apt-get update &&
+ apt-get install -y libcmocka-dev &&
+ make -i tests
+ "
push:
name: Push amd64 and arm64 images