Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/scripts/install-drgn.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
# These are build requirements of "drgn"; if we don't install these, the
# build/install of "drgn" will fail below.
#
sudo apt-get install bison flex libelf-dev libdw-dev libomp5 libomp-dev
sudo apt update
sudo apt install bison flex libelf-dev libdw-dev libomp5 libomp-dev

git clone https://github.com/osandov/drgn.git

Expand Down
5 changes: 3 additions & 2 deletions .github/scripts/install-libkdumpfile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
# all version of python3.X-dev so the Github actions jobs can install
# libkdumpfile with the right version.
#
sudo apt-get install autoconf automake liblzo2-dev libsnappy1v5 libtool pkg-config zlib1g-dev
sudo apt-get install python3.6-dev python3.7-dev python3.8-dev
sudo apt update
sudo apt install autoconf automake liblzo2-dev libsnappy1v5 libtool pkg-config zlib1g-dev
sudo apt install python3.6-dev python3.7-dev python3.8-dev

git clone https://github.com/ptesarik/libkdumpfile.git

Expand Down