add static version #234
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: Run Pytorch 1 and 2 | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- .github/workflows/bioimageio_ci.yml | |
- .github/workflows/test_mac_shm.yml | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-and-run: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest, macos-11] | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' # See 'Supported distributions' for available options | |
java-version: '11' | |
- name: Build with Maven | |
run: mvn clean install | |
- name: Generate Classpath (Unix) | |
if: runner.os != 'Windows' | |
run: | | |
mvn clean install org.apache.maven.plugins:maven-shade-plugin:3.2.4:shade -Dshade.mainClass=io.bioimage.modelrunner.example.ExampleLoadPytorch1Pytorch2 | |
- name: Generate Classpath (Windows) | |
if: runner.os == 'Windows' | |
shell: powershell | |
run: | | |
$classpath = mvn -q exec:exec "-Dexec.executable=echo" "-Dexec.args='%classpath'" | |
echo "CLASSPATH=$classpath" | Out-File -FilePath $env:GITHUB_ENV -Append | |
- name: Run Specific Class (Unix) | |
if: runner.os != 'Windows' | |
run: | | |
java -cp target/dl-modelrunner-0.5.9-SNAPSHOT.jar io.bioimage.modelrunner.example.ExampleLoadPytorch1Pytorch2 | |
- name: Run Specific Class (Windows) | |
if: runner.os == 'Windows' | |
shell: powershell | |
run: java -cp "$env:CLASSPATH;target/classes" io.bioimage.modelrunner.example.ExampleLoadPytorch1Pytorch2 |