Skip to content

Commit

Permalink
Fix setup in APT
Browse files Browse the repository at this point in the history
  • Loading branch information
krystophny committed Dec 12, 2024
1 parent 3e77008 commit 091bcd0
Showing 1 changed file with 59 additions and 4 deletions.
63 changes: 59 additions & 4 deletions .github/workflows/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,65 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: apt-transport-https build-essential ca-certificates curl libssl-dev openssh-client rsync wget git gfortran ninja-build cmake python3 python3-dev python3-pip python3-venv procps nano vim htop ncdu less gdb cmake-curses-gui valgrind dbus-x11 kcachegrind python3-tk idle3 findent expect environment-modules pkg-config libsuitesparse-dev libopenblas-dev libsuperlu-dev libhdf5-dev libhdf5-openmpi-dev libnetcdf-dev libnetcdff-dev libfftw3-dev libgsl-dev libopenmpi-dev libscalapack-openmpi-dev libpcre3-dev libreadline-dev h5utils hdf5-tools netcdf-bin libmetis-dev libboost-all-dev libtriangle-dev
version: 1.0
- name: Install dependencies
run: |
sudo apt-get update -y && sudo apt-get install -y -q --no-install-recommends \
apt-transport-https \
build-essential \
ca-certificates \
curl \
libssl-dev \
openssh-client \
rsync \
wget \
git \
gfortran \
ninja-build \
cmake \
python3 \
python3-dev \
python3-pip \
python3-venv
sudo apt-get install -y -q --no-install-recommends \
procps \
nano \
vim \
htop \
ncdu \
less \
gdb \
cmake-curses-gui \
valgrind \
dbus-x11 \
kcachegrind \
python3-tk \
idle3 \
findent \
expect \
environment-modules
sudo apt-get install -y -q --no-install-recommends \
pkg-config \
libsuitesparse-dev \
libopenblas-dev \
libsuperlu-dev \
libhdf5-dev \
libhdf5-openmpi-dev \
libnetcdf-dev \
libnetcdff-dev \
libfftw3-dev \
libgsl-dev \
libopenmpi-dev \
libscalapack-openmpi-dev \
libpcre3-dev \
libreadline-dev \
h5utils \
hdf5-tools \
netcdf-bin \
libmetis-dev \
libboost-all-dev \
libtriangle-dev
- name: Setup
run: |
Expand Down

0 comments on commit 091bcd0

Please sign in to comment.