diff options
-rw-r--r-- | .cirrus.yml | 2 | ||||
-rwxr-xr-x | .github/scripts/install_deps.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index d9067b05e3..530095c40f 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -10,7 +10,7 @@ freebsd_task: timeout_in: 30m install_script: - pkg update -f - - pkg install -y cmake gmake ninja pkgconf unzip wget gettext python libffi git + - pkg install -y cmake gmake ninja unzip wget gettext python git build_deps_script: - gmake deps build_script: diff --git a/.github/scripts/install_deps.sh b/.github/scripts/install_deps.sh index bb99873267..32591eb8da 100755 --- a/.github/scripts/install_deps.sh +++ b/.github/scripts/install_deps.sh @@ -18,7 +18,7 @@ done os=$(uname -s) if [[ $os == Linux ]]; then $SUDO apt-get update - $SUDO apt-get install -y build-essential cmake curl gettext ninja-build pkg-config unzip + $SUDO apt-get install -y build-essential cmake curl gettext ninja-build unzip if [[ -n $TEST ]]; then $SUDO apt-get install -y locales-all cpanminus fi |