Skip to content

Commit c7378c5

Browse files
Ghidra 12.0.3 support (#106)
* Ghidra 12.0.3 support * Disable headless arg in tests --------- Co-authored-by: Edward J. Schwartz <edmcman@cmu.edu>
1 parent 8536a98 commit c7378c5

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/release_on_tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
os: [ubuntu-latest]
21-
ghidra_version: ["10.3", "10.3.1", "10.3.2", "10.3.3", "10.4", "11.0", "11.0.1", "11.0.2", "11.0.3", "11.1", "11.1.1", "11.1.2", "11.2", "11.2.1", "11.3", "11.3.1", "11.3.2", "11.4", "11.4.1", "11.4.2", "12.0", "12.0.1", "12.0.2"]
21+
ghidra_version: ["10.3", "10.3.1", "10.3.2", "10.3.3", "10.4", "11.0", "11.0.1", "11.0.2", "11.0.3", "11.1", "11.1.1", "11.1.2", "11.2", "11.2.1", "11.3", "11.3.1", "11.3.2", "11.4", "11.4.1", "11.4.2", "12.0", "12.0.1", "12.0.2", "12.0.3"]
2222
runs-on: ${{ matrix.os }}
2323
steps:
2424
- uses: actions/checkout@v3

.github/workflows/run_tests_on_push_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
os: [ubuntu-latest]
21-
ghidra_version: ["10.3", "10.3.1", "10.3.2", "10.3.3", "10.4", "11.0", "11.0.1", "11.0.2", "11.0.3", "11.1", "11.1.1", "11.1.2", "11.2", "11.2.1", "11.3", "11.3.1", "11.3.2", "11.4", "11.4.1", "11.4.2", "12.0", "12.0.1", "12.0.2"]
21+
ghidra_version: ["10.3", "10.3.1", "10.3.2", "10.3.3", "10.4", "11.0", "11.0.1", "11.0.2", "11.0.3", "11.1", "11.1.1", "11.1.2", "11.2", "11.2.1", "11.3", "11.3.1", "11.3.2", "11.4", "11.4.1", "11.4.2", "12.0", "12.0.1", "12.0.2", "12.0.3"]
2222
runs-on: ${{ matrix.os }}
2323
steps:
2424
- uses: actions/checkout@v3

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Current Release
22

3+
## 260211
4+
- Improvements:
5+
* Support for Ghidra 12.0.3
6+
37
## 260206
48
- Improvements:
59
* Support for Ghidra 12.0.2

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ test {
464464
.collect { file(osDir.name + "/" + it.name )}
465465
.join(':')
466466

467-
jvmArgs = ['-Djava.awt.headless=true',
467+
jvmArgs = [
468468
// add-exports needed prior to Ghidra 10.3 to address sun.awt not exported in JDK 17+
469469
'--add-exports=java.desktop/sun.awt=ALL-UNNAMED',
470470
// add the kaiju os directories to load z3 library to run tests

0 commit comments

Comments
 (0)