correct more errors related to pre and post processing #683
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 Tensorflow 1 and Tensorflow 2 models | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- .github/workflows/bioimageio_ci.yml | |
- .github/workflows/test_mac_shm.yml | |
jobs: | |
build-and-run: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest, macos-12] | |
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: echo "CLASSPATH=$(mvn -q exec:exec -Dexec.executable=echo -Dexec.args='%classpath')" >> $GITHUB_ENV | |
- 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 $CLASSPATH:target/classes io.bioimage.modelrunner.example.ExampleLoadTensorflow1Tensorflow2 | |
- name: Run Specific Class (Windows) | |
if: runner.os == 'Windows' | |
shell: powershell | |
run: java -cp "$env:CLASSPATH;target/classes" io.bioimage.modelrunner.example.ExampleLoadTensorflow1Tensorflow2 |