mirror of
https://github.com/koreader/koreader.git
synced 2025-12-13 20:36:53 +01:00
ci: fix macOS build
Work around the fact that the lua@5.1 brew formula has been disabled. Additionally, drop ragel (no necessary anymore).
This commit is contained in:
committed by
Frans de Jonge
parent
ad6e3b34c4
commit
54ded2c578
19
.github/workflows/build.yml
vendored
19
.github/workflows/build.yml
vendored
@@ -29,10 +29,21 @@ jobs:
|
||||
- name: Homebrew install dependencies
|
||||
# Compared to the README, adds ccache for faster compilation times
|
||||
# Compared to the emulator, adds p7zip.
|
||||
run: >
|
||||
brew install -q nasm ragel binutils coreutils libtool autoconf automake cmake makedepend
|
||||
sdl2 lua@5.1 luarocks gettext pkg-config wget gnu-getopt grep bison
|
||||
ccache p7zip
|
||||
run: |
|
||||
packages=(
|
||||
nasm binutils coreutils libtool autoconf automake cmake makedepend
|
||||
sdl2 lua@5.1 luarocks gettext pkg-config wget gnu-getopt grep bison
|
||||
ccache p7zip
|
||||
)
|
||||
# Lua 5.1 is disabled, so we need to work around that:
|
||||
# - fetch all packages
|
||||
brew fetch "${packages[@]}"
|
||||
# - disable auto-updates
|
||||
export HOMEBREW_NO_AUTO_UPDATE=1
|
||||
# - install lua@5.1 from cache
|
||||
brew install "$(brew --cache lua@5.1)"
|
||||
# - and install the rest
|
||||
brew install "${packages[@]}"
|
||||
|
||||
- name: Building in progress…
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user