-
-
Notifications
You must be signed in to change notification settings - Fork 4
151 lines (147 loc) · 5.47 KB
/
ci.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
145
146
147
148
149
150
151
# TODO: add windows and run the testsuite
name: ci
env:
R2V: 5.8.4
on:
push:
branches:
- master
pull_request:
jobs:
build-linux20:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Installing radare2
run: |
wget https://github.com/radareorg/radare2/releases/download/5.8.4/radare2_5.8.4_amd64.deb
wget https://github.com/radareorg/radare2/releases/download/5.8.4/radare2-dev_5.8.4_amd64.deb
sudo dpkg -i radare2_5.8.4_amd64.deb
sudo dpkg -i radare2-dev_5.8.4_amd64.deb
- name: Installing yara via r2pm
run: r2pm -Ugi yara
- name: Building r2yara
run: ./configure && make -j && sudo make install
- name: Packaging
run: make -C dist/debian
- name: Pub
uses: actions/upload-artifact@v3
with:
name: build-linux
path: dist/debian/*.deb
build-linux22:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Installing radare2
run: |
wget https://github.com/radareorg/radare2/releases/download/5.8.4/radare2_5.8.4_amd64.deb
wget https://github.com/radareorg/radare2/releases/download/5.8.4/radare2-dev_5.8.4_amd64.deb
sudo dpkg -i radare2_5.8.4_amd64.deb
sudo dpkg -i radare2-dev_5.8.4_amd64.deb
- name: Installing yara via r2pm
run: r2pm -Ugi r2yara
build-macos:
runs-on: macos-11
# runs-on: macos-12
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: brew install pkg-config
- name: Building Radare2
run: ( git clone --depth=1 https://github.com/radareorg/radare2 && cd radare2 && export CFLAGS=-O0 && ./configure && make -j && sudo make install )
- name: Installing yara via r2pm
run: r2pm -Ugi yara
- name: Building r2yara
run: ./configure && make -j && make user-install
# - name: Packaging
# run: make -C dist/macos
# - name: Pub
# uses: actions/upload-artifact@v3
# with:
# if-no-files-found: error
# name: build-macos
# path: dist/macos/r2yara-*.pkg
check_release:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
outputs:
is_release: ${{ steps.release.outputs.is }}
tag_name: ${{ steps.release.outputs.tag }}
needs:
- build-linux20
- build-macos
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0 # Download all git history and tags
- name: Check if is a release
run: git describe --exact-match --tags ${{ github.sha }} | awk 'BEGIN{tag="-";r="no"}/^[0-9]+\.[0-9]+/{tag=$0;r="yes"};END{print "::set-output name=is::"r;print "::set-output name=tag::"tag}'
id: release
release:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && needs.check_release.outputs.is_release == 'yes' }}
needs:
- check_release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0 # Download all git history and tags
- name: Extract r2f version
run: echo "##[set-output name=branch;]$( ./configure -qV )"
id: r2fv
- name: Prepare release notes
run: echo Release > ./RELEASE_NOTES.md
- name: Download artifacts
uses: actions/download-artifact@v3
with:
path: dist/artifacts
- name: Create GitHub release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ needs.check_release.outputs.tag_name }}
release_name: ${{ steps.r2fv.outputs.branch }}
body_path: ./RELEASE_NOTES.md
draft: false
prerelease: false
- name: Upload asset for Linux
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/artifacts/build-linux/r2yara_${{ steps.r2fv.outputs.branch }}_amd64.deb
asset_name: r2yara_${{ steps.r2fv.outputs.branch }}_amd64.deb
asset_content_type: application/vnd.debian.binary-package
- name: Upload precompiled agent script
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/artifacts/build-agent/_agent.js
asset_name: _agent.js
asset_content_type: application/javascript
- name: Upload asset for macOS
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/artifacts/build-macos/r2yara-${{ steps.r2fv.outputs.branch }}-x64.pkg
asset_name: r2yara-${{ steps.r2fv.outputs.branch }}-x64.pkg
asset_content_type: application/octet-stream
- name: Upload asset for Windows (w64)
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/artifacts/build-windows/r2yara-${{env.R2V}}-w64.zip
asset_name: r2yara-${{ steps.r2fv.outputs.branch }}-w64.zip
asset_content_type: application/zip