update dependencies, test with ghidra 11.2 #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: fetch Ghidra | |
run: | | |
wget -O ${{ runner.temp }}/ghidra.zip https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_10.1.1_build/ghidra_10.1.1_PUBLIC_20211221.zip | |
unzip -d ${{ runner.temp }} ${{ runner.temp }}/ghidra.zip | |
- name: grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: build with Gradle | |
run: ./gradlew buildExtension | |
env: | |
GHIDRA_INSTALL_DIR: ${{ runner.temp }}/ghidra_10.1.1_PUBLIC | |
- name: exporting artefacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: fugue-ghidra-plugin | |
path: | | |
${{ github.workspace }}/dist/*_fugue-ghidra.zip |