Skip to content
This repository was archived by the owner on Nov 16, 2025. It is now read-only.

Add batch and struct analysis handlers to plugin #68

Add batch and struct analysis handlers to plugin

Add batch and struct analysis handlers to plugin #68

Workflow file for this run

name: Build Ghidra Extension
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Download Ghidra
run: |
wget -O ghidra.zip https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_11.4.2_build/ghidra_11.4.2_PUBLIC_20250826.zip
unzip ghidra.zip -d /tmp/
GHIDRA_DIR=$(find /tmp -name "ghidra_*" -type d | head -1)
echo "GHIDRA_INSTALL_DIR=$GHIDRA_DIR" >> $GITHUB_ENV
- name: Build with Gradle
run: ./gradle build -PGHIDRA_INSTALL_DIR=$GHIDRA_INSTALL_DIR
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: ghidra-extension
path: |
dist/*.zip
build/libs/*.jar
retention-days: 30