Skip to content

Commit

Permalink
Updates GitHub workflows to support building of new payloads
Browse files Browse the repository at this point in the history
  • Loading branch information
cgranleese-r7 committed Jul 8, 2024
1 parent 67f3092 commit 6caa6ce
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,50 @@ on:
# - cron: '*/15 * * * *'

jobs:
# The job checkout structure is:
# .
# ├── metasploit-framework
#
docker_arm:
runs-on: ${{ matrix.os }}
timeout-minutes: 600

strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
# From: 'ls ./docker/'
docker:
# Skipped as not working
# - { dockerfile: 'debian-aarch64', previousImage: '' }
- { name: 'debian-armv7', previousDockerhubImage: 'rapid7/msf-debian-armv7-omnibus:2024_04' }

name: ${{ matrix.os }} - ${{ matrix.docker.name }}
steps:
# Checkout framework
- name: Checkout metasploit-framework code
uses: actions/checkout@v4
with:
repository: rapid7/metasploit-framework
path: metasploit-framework

# Checkout metasploit-payloads
- name: Checkout metasploit-payloads
uses: actions/checkout@v4
with:
repository: rapid7/metasploit-payloads
path: metasploit-payloads
run: |
make -f Makefile.mk
# Checkout mettle
- name: Checkout mettle
uses: actions/checkout@v4
with:
repository: rapid7/mettle
path: mettle

# Run all test individually, note there is a separate final job for aggregating the test results
test:
strategy:
Expand Down

0 comments on commit 6caa6ce

Please sign in to comment.