Skip to content

GP-0: Make the setting of the Linux application name in Ghidra.java #50

GP-0: Make the setting of the Linux application name in Ghidra.java

GP-0: Make the setting of the Linux application name in Ghidra.java #50

Workflow file for this run

name: Build Ghidra
on: [push]
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Read Ghidra JDK Version
run: echo "JDK_VER=$(awk -F'=' '$1=="application.java.min" {print $2}' Ghidra/application.properties)" >> $GITHUB_ENV
- name: Setup JDK
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '${{ env.JDK_VER }}'
- name: Fetch Dependencies
run: ./gradlew -I gradle/support/fetchDependencies.gradle -DhideDownloadProgress -DnoEclipse
- name: Build Ghidra
run: ./gradlew buildGhidra --parallel