Skip to content
Closed
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
7 changes: 5 additions & 2 deletions scripts/prep-gh-action.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
#!/bin/bash

# This script does a bit of extra preparation of the docker containers used to run the GitHub workflows
# that are specific to this project's needs when building/testing. Note that this script runs on
# every supported Linux distribution so it must adapt to the distribution that it is running.

apt-get --help && apt-get update && apt-get -y install curl make
yum --help && (curl --help && yum -y install curl) && yum install make

(cat /etc/os-release | grep bookworm) && apt-get -y install libstdc++-12-dev gnupg2
(cat /etc/os-release | grep 'Fedora Linux 39') && yum -y install libstdc++-devel libstdc++-static
(cat /etc/os-release | grep bookworm) && apt-get -y install gnupg2

exit 0
Loading