Skip to content

Commit

Permalink
add libzip dependency for Linux and macOS and Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
jcschaff committed Sep 10, 2024
1 parent c9316bd commit 300a9e5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ jobs:
run: |
brew install boost
brew install hdf5
brew install libzip
brew install ninja
brew install llvm
Expand All @@ -90,6 +91,7 @@ jobs:
run: |
brew install boost
brew install hdf5
brew install libzip
brew install ninja
brew install llvm
Expand Down Expand Up @@ -253,6 +255,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y libboost-all-dev
sudo apt-get install -y libhdf5-dev
sudo apt-get install -y libzip-dev
sudo apt-get install -y ninja-build
gcc --version
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y libboost-all-dev
sudo apt-get install -y libhdf5-dev
sudo apt-get install -y libzip-dev
sudo apt-get install -y ninja-build
gcc --version
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ubuntu:22.04 as build

RUN apt-get -y update && apt-get install -y apt-utils && \
apt-get install -y -qq -o=Dpkg::Use-Pty=0 build-essential gfortran zlib1g-dev \
libhdf5-dev ninja-build libcurl4-openssl-dev libboost-all-dev cmake wget python3
libhdf5-dev libzip-dev ninja-build libcurl4-openssl-dev libboost-all-dev cmake wget python3

COPY . /vcellroot

Expand Down

0 comments on commit 300a9e5

Please sign in to comment.