Skip to content

Commit

Permalink
ci: add blosc dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
cmhulbert committed Mar 5, 2024
1 parent dedd102 commit 453c9c0
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Install blosc
run: |
sudo apt-get update
sudo apt-get install -y libblosc1
- name: Set up Java
uses: actions/setup-java@v3
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Install blosc
run: |
sudo apt-get update
sudo apt-get install -y libblosc1
- name: Set up Java
uses: actions/setup-java@v3
with:
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/platform-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,20 @@ jobs:

steps:
- uses: actions/checkout@v2
- 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 src/test/resources
mv src/test/resources/bin/* src/test/resources
- name: Install blosc (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
pip install blosc --no-input --target src/test/resources
mv src/test/resources/lib64/* src/test/resources
- name: Set up Java
uses: actions/setup-java@v2
with:
Expand Down

0 comments on commit 453c9c0

Please sign in to comment.