Skip to content

Commit

Permalink
call wget
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosuc3m committed Nov 13, 2024
1 parent 8facb0c commit 32961bc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/integration_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,14 @@ jobs:
distribution: 'zulu'

- name: Set up Fiji
if: steps.cache-fiji.outputs.cache-hit != 'true'
shell: bash
run: |
mkdir -p fiji
wget -q https://downloads.imagej.net/fiji/latest/${{ matrix.url_file_name }} -O fiji.zip
if [ "$RUNNER_OS" == "Windows" ]; then
C:/Windows/System32/wget.exe -q https://downloads.imagej.net/fiji/latest/${{ matrix.url_file_name }} -O fiji.zip
else
wget -q https://downloads.imagej.net/fiji/latest/${{ matrix.url_file_name }} -O fiji.zip
fi
unzip fiji.zip -d fiji
- name: Build Plugin
Expand Down

0 comments on commit 32961bc

Please sign in to comment.