-
Notifications
You must be signed in to change notification settings - Fork 1
144 lines (133 loc) · 4.06 KB
/
wrapups.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# name: Metasploit wrapups
# on:
# workflow_dispatch:
# inputs:
# startTag:
# description: 'Start tag'
# required: true
# default: '6.0.20'
# endTag:
# description: 'End tag'
# required: true
# default: '6.0.21'
# 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:
# - 2.7
# 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: Generate change logs
# run: |
# echo "Release notes for ${{ github.event.inputs.startTag }} to ${{ github.event.inputs.endTag }}" > wrapup.html
# - name: Upload Change log
# uses: actions/upload-artifact@v2
# with:
# name: wrapup-${{ github.event.inputs.startTag }}-to-${{ github.event.inputs.endTag }}
# path: wrapup.html
# retention-days: 1
# #
# # - 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
# #
# # - uses: actions/setup-ruby@v1
# # with:
# # ruby-version: ${{ matrix.ruby }}
# #
# # - 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@v6
# # 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 }}