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.
- Loading branch information
1 parent
6a020b1
commit 830d8d0
Showing
1 changed file
with
52 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | ||
|
||
name: Pytest Python Package Repo Devcontainer Across Versions | ||
|
||
on: | ||
push: | ||
branches: [ "main", "fix-workflows" ] | ||
paths: | ||
- 'ghidrecomp/**' | ||
- 'tests/**' | ||
- '.github/workflows/pytest-devcontainer-repo-all.yml' | ||
pull_request: | ||
branches: [ "main" ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# cover the latest and all versions of all subreleases | ||
# add "latest" when jpype is update for python 3.12 | ||
image: ["10.4ghidra3.11python-bookworm","10.4ghidra3.9python-bookworm", "10.3.3ghidra3.10python-bookworm", "10.2.3ghidra3.11python-bookworm", "10.1.5ghidra3.11python-bookworm" ] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Overwrite original devcontainer with workflow devcontainer | ||
run: | | ||
cp .github/workflows/devcontainer.json .devcontainer/devcontainer.json | ||
- name: Test with pytest on devcontainer | ||
env: | ||
# this will set the imageName in the base docker container .github/workflows/.devcontainer/devcontainer.json | ||
# (which is needed because imageName for devcontainers/[email protected] doesn't affect which image you use! | ||
DC_IMAGE_TAG : ${{matrix.image}} | ||
uses: devcontainers/[email protected] | ||
with: | ||
# this is not the image name used for building the dev container. | ||
imageName: ghcr.io/clearbluejar/ghidra-python | ||
cacheFrom: ghcr.io/clearbluejar/ghidra-python | ||
imageTag: ${{matrix.image}} | ||
push: never | ||
#platform: linux/amd64,linux/arm64 | ||
runCmd: | | ||
env | ||
ls /usr/local/include/ | ||
pip install --upgrade pip | ||
# install package and testing | ||
pip install -e ".[testing]" | ||
pytest -rA |