Skip to content

Commit

Permalink
ci: get blosck for n5-universe test
Browse files Browse the repository at this point in the history
  • Loading branch information
cmhulbert committed Jun 24, 2024
1 parent 039b6d2 commit 7967e11
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/platform-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,22 @@ jobs:
repository: saalfeldlab/n5-universe
path: n5-universe


- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install blosc (Windows)
if: matrix.os == 'windows-latest'
run: |
pip install blosc --no-input --target n5-universe/src/test/resources
mv n5-universe/src/test/resources/bin/* n5-universe/src/test/resources
- name: Install blosc (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
pip install blosc --no-input --target n5-universe/src/test/resources
mv n5-universe/src/test/resources/lib64/* n5-universe/src/test/resources
- name: Get version from Maven and Replace
run: |
version=$(mvn -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive exec:exec)
Expand Down

0 comments on commit 7967e11

Please sign in to comment.