Make it possible to fetch Core based on PR number #17
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Images | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - name: aflpp | |
| context: . | |
| file: ./Dockerfile | |
| tag: fuzzamoto:ci | |
| - name: libafl | |
| context: . | |
| file: ./Dockerfile.libafl | |
| tag: fuzzamoto-libafl:ci | |
| - name: coverage | |
| context: . | |
| file: ./Dockerfile.coverage | |
| tag: fuzzamoto-coverage:ci | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build image - ${{ matrix.name }} | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: ${{ matrix.context }} | |
| file: ${{ matrix.file }} | |
| push: false # build only - don't push to registry | |
| tags: ${{ matrix.tag }} | |
| platforms: linux/amd64 | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |