Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use github actions for CI #1165

Merged
merged 5 commits into from
Feb 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
109 changes: 109 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
name: build

on:
push:
branches:
- develop
tag:
workflow_dispatch:
schedule:
# Every Month, the first day at 8:42
- cron: "42 8 1 * *"

jobs:
build_analyzers:
name: Build Analyzers
runs-on: [ ubuntu-latest ]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build analyzers
uses: docker://thehiveproject/cortex-neurons-builder:latest
with:
args: |
--namespace cortexneurons --path analyzers --registry_dockerhub ${{ secrets.REGISTRY_DOCKERHUB }} --registry_harbor ${{ secrets.REGISTRY_HARBOR }} ${{ github.event.name == 'tag' && '--stable' || '' }}

build_responders:
name: Build Responders
runs-on: [ ubuntu-latest ]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build responders
uses: docker://thehiveproject/cortex-neurons-builder:latest
with:
args: |
--namespace cortexneurons --path responders --registry_dockerhub ${{ secrets.REGISTRY_DOCKERHUB }} --registry_harbor ${{ secrets.REGISTRY_HARBOR }} ${{ github.event.name == 'tag' && '--stable' || '' }}

build_catalog:
name: Build Catalog
runs-on: [ ubuntu-latest ]
needs: [ build_analyzers, build_responders ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build catalog
uses: docker://thehiveproject/neurons-build-catalogs
- name: Build report-templates zip package
uses: docker://thehiveproject/neurons-build-report-templates
- name: Save Artifacts
uses: actions/upload-artifact@v3
with:
name: catalog
path: |
analyzers/analyzers.json
analyzers/report-templates.zip
responders/responders.json
- name: Make Release
uses: softprops/action-gh-release@v1
if: github.event.name == 'tag'
with:
generate_release_notes: true
files: |
analyzers/analyzers-stable.json
analyzers/analyzers.json
analyzers/report-templates.zip
responders/responders-stable.json
responders/responders.json

build_docs:
name: Build documentation
runs-on: [ ubuntu-latest ]
needs: [build_analyzers, build_responders ]
if: github.event.name == 'tag'
steps:
- uses: actions/checkout@v3
- name: Prepare documentation files
uses: docker://thehiveproject/doc-builder
with:
args: --type Cortex-Neurons
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.x"
architecture: x64
- name: Install requirements
run: python3 -m pip install -r utils/test_doc/requirements.txt
- name: setup git user
run: git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com'
- name: Deploy
run: python3 -m mkdocs gh-deploy --remote-branch gh-pages --force

notify:
needs: [build_analyzers, build_responders, build_catalog, build_docs ]
runs-on: [ ubuntu-latest ]
if: always()
steps:
- name: Slack notification
uses: Gamesight/slack-workflow-status@master
with:
repo_token: ${{secrets.GITHUB_TOKEN}}
slack_webhook_url: ${{secrets.SLACK_WEBHOOK_URL}}
channel: "#ci-cortex"
name: Cortex Analyzers build
include_commit_message: true
include_jobs: true
24 changes: 12 additions & 12 deletions analyzers/FileInfo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
FROM python:3.9

WORKDIR /worker
COPY . FileInfo
RUN apt update
RUN apt install -y -q libboost-regex-dev \
RUN apt update && \
apt install -y -q libboost-regex-dev \
libboost-program-options-dev \
libboost-system-dev libboost-filesystem-dev libssl-dev \
build-essential cmake unzip curl \
git
git \
libfuzzy-dev libimage-exiftool-perl && \
rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/JusticeRage/Manalyze.git && \
cd Manalyze && \
cmake . && \
make -j5 && \
cd bin/yara_rules && \
pip3 install requests && \
python3 update_clamav_signatures.py
RUN apt update && \
apt install -y -q libfuzzy-dev libimage-exiftool-perl && \
rm -rf /var/lib/apt/lists/* && \
pip install --no-cache-dir -r FileInfo/requirements.txt

cd bin/yara_rules && \
pip3 install requests && \
python3 update_clamav_signatures.py
RUN curl -SL https://github.com/mandiant/flare-floss/releases/download/v2.0.0/floss-v2.0.0-linux.zip --output floss.zip && \
unzip floss.zip -d /usr/bin
ENTRYPOINT FileInfo/fileinfo_analyzer.py
COPY . FileInfo
RUN pip install --no-cache-dir -r FileInfo/requirements.txt

ENTRYPOINT FileInfo/fileinfo_analyzer.py
1 change: 0 additions & 1 deletion analyzers/FileInfo/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
cortexutils
python-magic
python-magic-bin
python-magic-debian-bin
ssdeep
pyexifinfo
Expand Down
7 changes: 7 additions & 0 deletions utils/test_doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
pymdown-extensions
mkdocs
mkdocs-awesome-pages-plugin
mkdocs-git-revision-date-localized-plugin
mkdocs-material
mkdocs-material-extensions
mkdocs-pymdownx-material-extras