generated from clearbluejar/ghidra-python-vscode-devcontainer-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix max-depth-display, test for called graphs, remove bad chars from mermaidjs, remove timeout exception * revert latest image until pyton 3.12 is supported in jpype * workaround for gh actions
- Loading branch information
1 parent
6d3b04c
commit 6a020b1
Showing
7 changed files
with
71 additions
and
29 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,20 +13,29 @@ on: | |
jobs: | ||
test: | ||
|
||
runs-on: ubuntu-latest | ||
runs-on: ${{ matrix.runner }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.11"] | ||
runner: [ ubuntu-latest ] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
# - name: Set up QEMU for multi-architecture builds | ||
# uses: docker/setup-qemu-action@v2 | ||
|
||
# - name: Setup Docker buildx for multi-architecture builds | ||
# uses: docker/setup-buildx-action@v2 | ||
# with: | ||
# use: true | ||
- name: Test with pytest on devcontainer | ||
uses: devcontainers/[email protected] | ||
with: | ||
imageName: ghcr.io/clearbluejar/ghidra-python | ||
cacheFrom: ghcr.io/clearbluejar/ghidra-python | ||
|
||
push: never | ||
# platform: linux/amd64,linux/arm64 | ||
runCmd: | | ||
pip install --upgrade pip | ||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = '0.4.2' | ||
__version__ = '0.4.3' | ||
__author__ = 'clearbluejar' | ||
|
||
# Expose API | ||
|
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
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
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
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