From 48c0b3067103ef70109a167a422fb362bdd19432 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 12 Nov 2023 14:28:28 +0530 Subject: [PATCH] Install simde on CI --- .github/workflows/ci.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.py b/.github/workflows/ci.py index 0a40e8434..32f4ccca9 100644 --- a/.github/workflows/ci.py +++ b/.github/workflows/ci.py @@ -37,13 +37,13 @@ def install_deps(): import ssl if ssl.OPENSSL_VERSION_INFO[0] == 1: openssl += '@1.1' - run('brew', 'install', 'fish', openssl, *items) + run('brew', 'install', 'fish', 'simde', openssl, *items) else: run('sudo apt-get update') run('sudo apt-get install -y libgl1-mesa-dev libxi-dev libxrandr-dev libxinerama-dev ca-certificates' ' libxcursor-dev libxcb-xkb-dev libdbus-1-dev libxkbcommon-dev libharfbuzz-dev libx11-xcb-dev zsh' ' libpng-dev liblcms2-dev libfontconfig-dev libxkbcommon-x11-dev libcanberra-dev libxxhash-dev uuid-dev' - ' zsh bash dash') + ' libsimde-dev zsh bash dash') # for some reason these directories are world writable which causes zsh # compinit to break run('sudo chmod -R og-w /usr/share/zsh')