-
Notifications
You must be signed in to change notification settings - Fork 1
125 lines (107 loc) · 3.18 KB
/
module-info.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
name: Module information
on:
workflow_dispatch: {}
push:
branches-ignore:
- gh-pages
- metakitty
#schedule:
# - cron: '0 18 * * *'
jobs:
build:
runs-on: ubuntu-20.04
timeout-minutes: 40
services:
postgres:
image: postgres:9.6
ports: ["5432:5432"]
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
strategy:
fail-fast: true
matrix:
ruby:
- 3.2
info_cmd:
- >-
set -euxo pipefail;
cd metasploit-framework;
mkdir tmp;
bundle exec ./msfconsole --quiet --no-database --resource ../metasploit-info/resources/extract_module_info.rc --execute-command 'quit';
cd ..;
cp ./metasploit-framework/tmp/module_metadata.json ./metasploit-info/info/module_metadata.json;
env:
RAILS_ENV: test
name: Ruby ${{ matrix.ruby }} - ${{ matrix.test_cmd }}
steps:
- name: Install system dependencies
run: sudo apt-get install libpcap-dev graphviz
- name: Checkout code
uses: actions/checkout@v2
with:
path: metasploit-info
- name: ${{ matrix.test_cmd }}
run: |
echo "${CMD}"
bash -c "${cmd}"
env:
CMD: ${{ matrix.test_cmd }}
- name: Checkout metasploit-framework code
uses: actions/checkout@v2
with:
repository: rapid7/metasploit-framework
path: metasploit-framework
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Setup bundler
run: |
gem install bundler
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Bundle install
run: |
cd metasploit-framework
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
env:
BUNDLER_WITHOUT: coverage development pcap
- name: Create database
run: |
cd metasploit-framework
cp config/database.yml.github_actions config/database.yml
bundle exec rake --version
bundle exec rake db:create
bundle exec rake db:migrate
# fail build if db/schema.rb update is not committed
git diff --exit-code db/schema.rb
- name: ${{ matrix.info_cmd }}
run: |
echo "${CMD}"
bash -c "${CMD}"
env:
CMD: ${{ matrix.info_cmd }}
- name: Commit
uses: EndBug/add-and-commit@v9
with:
add: './info'
author_name: Metasploit Github Actions
author_email: [email protected]
branch: master
cwd: './metasploit-info'
message: 'Update module information'
signoff: false
push: true
token: ${{ secrets.GITHUB_TOKEN }}