From 41f4b1f2acbd4ea8525cb2cfc1ff355543577cbe Mon Sep 17 00:00:00 2001 From: Benoit Pierre Date: Sun, 2 Jun 2024 20:19:19 +0200 Subject: [PATCH] ci/macos: trim build dependencies We actually don't need luarocks anymore for building (just testing). --- .github/workflows/build.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 412578e5e..2b0aa4afe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -101,17 +101,8 @@ jobs: run: | packages=( nasm binutils coreutils libtool autoconf automake cmake make - sdl2 lua@5.1 luarocks gettext pkg-config wget - gnu-getopt grep p7zip ninja + sdl2 gettext pkg-config wget gnu-getopt grep p7zip ninja ) - # Lua 5.1 is disabled, so we need to work around that: - # - fetch all packages - brew fetch --formula "${packages[@]}" - # - disable auto-updates - export HOMEBREW_NO_AUTO_UPDATE=1 - # - install lua@5.1 from cache - brew install --formula --quiet "$(brew --cache lua@5.1)" - # - and install the rest brew install --formula --quiet "${packages[@]}" - name: Update PATH