mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
[Ubuntu] Get rid of simple apt-get provisioners (#2376)
* move 7z installation to basic.sh * remove build essential * move imagemagick to apt * move subversion to apt * move subversion to apt * move sphinxsearch to apt * move swig to apt * move pollinate to apt * move haveged to apt * add p7zip to ubuntu 16
This commit is contained in:
@@ -1,11 +0,0 @@
|
||||
#!/bin/bash -e
|
||||
################################################################################
|
||||
## File: 7-zip.sh
|
||||
## Desc: Installs 7-zip
|
||||
################################################################################
|
||||
|
||||
# Install 7-Zip
|
||||
apt-get update -y
|
||||
apt-get install -y p7zip p7zip-full p7zip-rar
|
||||
|
||||
invoke_tests "Tools" "7-Zip"
|
||||
@@ -1,18 +0,0 @@
|
||||
#!/bin/bash -e
|
||||
################################################################################
|
||||
## File: build-essential.sh
|
||||
## Desc: Installs build-essential package
|
||||
################################################################################
|
||||
|
||||
source $HELPER_SCRIPTS/install.sh
|
||||
|
||||
PACKAGE=build-essential
|
||||
|
||||
# Test to see if the software in question is already installed, if not install it
|
||||
echo "Checking to see if the installer script has already been run"
|
||||
if ! IsPackageInstalled $PACKAGE; then
|
||||
echo "Installing $PACKAGE"
|
||||
apt-get install -y --no-install-recommends $PACKAGE
|
||||
else
|
||||
echo "$PACKAGE is already installed"
|
||||
fi
|
||||
@@ -1,12 +0,0 @@
|
||||
#!/bin/bash -e
|
||||
################################################################################
|
||||
## File: image-magick.sh
|
||||
## Desc: Installs ImageMagick
|
||||
################################################################################
|
||||
|
||||
# Install ImageMagick
|
||||
apt-get install -y --no-install-recommends --fix-missing \
|
||||
imagemagick \
|
||||
libmagickcore-dev \
|
||||
libmagickwand-dev \
|
||||
libmagic-dev
|
||||
@@ -1,10 +0,0 @@
|
||||
#!/bin/bash -e
|
||||
################################################################################
|
||||
## File: pollinate.sh
|
||||
## Desc: Installs Pollinate
|
||||
################################################################################
|
||||
|
||||
# Install Pollinate
|
||||
apt-get install -y --no-install-recommends pollinate
|
||||
|
||||
invoke_tests "Tools" "Pollinate"
|
||||
@@ -1,10 +0,0 @@
|
||||
#!/bin/bash -e
|
||||
################################################################################
|
||||
## File: rndgenerator.sh
|
||||
## Desc: Install random number generator
|
||||
################################################################################
|
||||
|
||||
# Install haveged
|
||||
apt-get -y install haveged
|
||||
|
||||
invoke_tests "Tools" "Haveged"
|
||||
@@ -1,10 +0,0 @@
|
||||
#!/bin/bash -e
|
||||
################################################################################
|
||||
## File: subversion.sh
|
||||
## Desc: Installs Subversion client
|
||||
################################################################################
|
||||
|
||||
# Install Subversion
|
||||
apt-get install -y --no-install-recommends subversion
|
||||
|
||||
invoke_tests "Tools" "SVN"
|
||||
@@ -1,6 +0,0 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
# Install Swig
|
||||
sudo apt-get install -y swig
|
||||
|
||||
invoke_tests "Tools" "Swig"
|
||||
Reference in New Issue
Block a user