Skip to content

Commit c1776fe

Browse files
Add test harness
1 parent cad623a commit c1776fe

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ jobs:
100100
101101
pip install requests
102102
pip3 install s4cmd
103+
pip3 install boto3
103104
104105
test_python_version_file:
105106
runs-on: ubuntu-latest

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ runs:
4848
installation_directory=${{ steps.set-installation-directory.outputs.installation_directory }}
4949
mkdir -p "${installation_directory}"
5050
exact_python_version="${{ steps.find-exact-python-version.outputs.exact_python_version }}"
51-
${GITHUB_ACTION_PATH}/install-python.sh "${exact_python_version}" "${installation_directory}"
51+
${GITHUB_ACTION_PATH}/install-python.sh "${exact_python_version}" "${installation_directory}"
5252
5353
- name: Add python to PATH
5454
shell: bash
@@ -59,7 +59,7 @@ runs:
5959
echo "The following python binaries are now available in the PATH"
6060
ls "${installation_directory}/bin"
6161
62-
echo "Linking python libraries.."
62+
echo "Linking python libraries..."
6363
ls "${installation_directory}/lib"
6464
sudo ldconfig "${installation_directory}/lib"
6565

install-system-dependencies.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ fi
1818

1919
dynamic_package_list="${desired_openssl_package} ${desired_lib_crypt}"
2020

21-
sudo yum install -y gcc make \
21+
sudo yum install -y autoconf automake binutils bison byacc cscope ctags diffstat doxygen \
22+
elfutils flex gcc gcc-c++ gcc-gfortran gettext git indent intltool libtool make patch patchutils \
23+
pkgconfig rcs rpm-build rpm-sign subversion swig system-rpm-config systemtap \
2224
${dynamic_package_list} zlib-devel bzip2 bzip2-devel readline-devel libffi-devel \
2325
ncurses-devel sqlite sqlite-devel gdbm-devel tk-devel xz-devel \
2426
tar gzip wget which

0 commit comments

Comments
 (0)