[HOTFIX] AppSec PNW 2024, Deeplink Trigger Support for Android Dynamic Analyzer #284
Workflow file for this run
This file contains 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: 'Docker Images (amd64/arm64) test' | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
buildx: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v3 | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Build AMD64 image | |
id: docker_build_amd | |
uses: docker/build-push-action@v5 | |
with: | |
push: false | |
context: . | |
platforms: linux/amd64 | |
tags: opensecurity/mobile-security-framework-mobsf:latest | |
- | |
name: Build ARM64 image | |
id: docker_build_arm | |
uses: docker/build-push-action@v5 | |
with: | |
push: false | |
context: . | |
platforms: linux/arm64 | |
tags: opensecurity/mobile-security-framework-mobsf:latest |