2022-09-19 12:37:39 +00:00
|
|
|
name: macos-homebrew-PR-check
|
2022-08-06 16:33:10 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
- master
|
|
|
|
- staged
|
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
2022-11-28 13:37:42 +00:00
|
|
|
# - ".github/**"
|
2022-08-06 16:33:10 +00:00
|
|
|
- "howto/**"
|
|
|
|
- "*.md"
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [macos-12]
|
2023-03-20 23:41:26 +00:00
|
|
|
qt_ver: [6.4.3]
|
2022-08-06 16:33:10 +00:00
|
|
|
qt_arch: [clang_64]
|
|
|
|
env:
|
|
|
|
targetName: GoldenDict
|
|
|
|
steps:
|
|
|
|
# - name: prepare env
|
|
|
|
# run: |
|
|
|
|
# cd /opt
|
|
|
|
# mkdir homebrew
|
|
|
|
# curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew
|
|
|
|
# export PATH=$PATH:/opt/homebrew/bin
|
|
|
|
- name: Install Qt
|
2022-11-28 13:37:42 +00:00
|
|
|
uses: jurplel/install-qt-action@v3
|
2022-08-06 16:33:10 +00:00
|
|
|
with:
|
|
|
|
version: ${{ matrix.qt_ver }}
|
|
|
|
arch: ${{ matrix.qt_arch }}
|
|
|
|
cached: 'false'
|
2023-03-26 03:39:51 +00:00
|
|
|
modules: qtwebengine qtwebchannel qtpositioning qt5compat qtmultimedia qtspeech
|
2022-08-06 16:33:10 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
|
|
|
- name: Set outputs
|
|
|
|
id: githash
|
|
|
|
run: |
|
|
|
|
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
|
|
|
|
|
2023-04-28 01:52:23 +00:00
|
|
|
- name: install deps on macos
|
2022-08-06 16:33:10 +00:00
|
|
|
run: |
|
|
|
|
brew install pcre2 harfbuzz freetype
|
|
|
|
brew install cmake ninja python
|
|
|
|
brew install automake
|
|
|
|
brew install autoconf
|
|
|
|
brew install libtool
|
|
|
|
brew install opencc
|
2023-04-28 01:52:23 +00:00
|
|
|
brew tap homebrew-ffmpeg/ffmpeg
|
|
|
|
brew install homebrew-ffmpeg/ffmpeg/ffmpeg --with-speex
|
2022-08-06 16:33:10 +00:00
|
|
|
brew install libao
|
|
|
|
brew install libiconv
|
|
|
|
brew install lzo bzip2
|
|
|
|
brew install libogg
|
|
|
|
brew install zstd lzip
|
|
|
|
brew install libvorbis --force
|
|
|
|
brew install hunspell
|
2022-09-08 13:46:17 +00:00
|
|
|
wget ftp://ftp.sra.co.jp/pub/misc/eb/eb-4.4.3.tar.bz2
|
|
|
|
tar xvjf eb-4.4.3.tar.bz2
|
|
|
|
cd eb-4.4.3 && ./configure && make -j 8 && sudo make install && cd ..
|
|
|
|
#brew install qt # or use official offline installer
|
|
|
|
brew install xz lzo
|
2022-08-06 16:33:10 +00:00
|
|
|
brew install pkg-config
|
2023-02-01 15:23:23 +00:00
|
|
|
brew install libiconv
|
2022-08-06 16:33:10 +00:00
|
|
|
|
|
|
|
- name: compile
|
|
|
|
run: |
|
2023-04-15 23:00:58 +00:00
|
|
|
qmake CONFIG+=release CONFIG+=no_macos_universal CONFIG+=zim_support CONFIG+=use_iconv #CONFIG+=no_epwing_support # CONFIG+=no_ffmpeg_player #CONFIG+=no_qtmultimedia_player
|
2022-08-06 16:33:10 +00:00
|
|
|
make
|
|
|
|
|