Skip to content
Snippets Groups Projects
Commit 6cdc8bfb authored by Ethan Robert's avatar Ethan Robert
Browse files

Added requirements to .gitlab-ci

parent f30387bd
No related branches found
No related tags found
No related merge requests found
Pipeline #60091 failed
......@@ -8,6 +8,8 @@ stages:
install:
stage: install
before_script:
- apt-get update && apt-get install -y wget sudo unzip
script:
- chmod +x install-unix.sh
- ./install-unix.sh
......
......@@ -11,13 +11,13 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
elif [[ -f /etc/debian_version ]]; then
# Debian/Ubuntu
sudo apt update
sudo apt install -y graphviz wget unzip
sudo apt install -y graphviz wget unzip sudo
elif [[ -f /etc/arch-release ]]; then
# Arch
sudo pacman -Syu --noconfirm graphviz wget unzip
sudo pacman -Syu --noconfirm graphviz wget unzip sudo
elif [[ -f /etc/fedora-release ]]; then
# Fedora
sudo dnf install -y graphviz wget unzip
sudo dnf install -y graphviz wget unzip sudo
else
echo "Unsupported OS"
exit 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment