mirror of
https://github.com/koreader/koreader
synced 2024-11-11 19:11:14 +00:00
f588edd9b1
github no longer supports 10.15 so use 13 just to ensure the build does not break
48 lines
1.5 KiB
YAML
48 lines
1.5 KiB
YAML
name: build
|
|
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
macos_build:
|
|
|
|
# macos-11, macos-12 & macos-13 are broken at this time being.
|
|
# https://github.com/koreader/koreader/issues/8686,
|
|
# https://github.com/koreader/koreader/issues/8686#issuecomment-1172950236
|
|
|
|
# Please don't update to newer macOS version unless you can test that the new
|
|
# action produces working binaries.
|
|
# 10.15 is no longer supported so we are running 13 just to make sure the build does not break.
|
|
runs-on: macos-13
|
|
|
|
steps:
|
|
- name: XCode version
|
|
run: xcode-select -p
|
|
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- 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
|
|
|
|
- name: Building in progress…
|
|
run: |
|
|
export MACOSX_DEPLOYMENT_TARGET=10.15;
|
|
export PATH="$(brew --prefix)/opt/gettext/bin:$(brew --prefix)/opt/gnu-getopt/bin:$(brew --prefix)/opt/bison/bin:$(brew --prefix)/opt/grep/libexec/gnubin:${PATH}";
|
|
./kodev release macos
|
|
|
|
- name: Uploading artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: koreader-macos
|
|
path: '*.7z'
|