Mercurial > minori
diff .builds/macos.yml @ 212:6b08fbd7f206
chore: merge branches
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sun, 07 Jan 2024 09:54:50 -0500 |
parents | 52dda8927a81 |
children | 2f6d27fcdf7d |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.builds/macos.yml Sun Jan 07 09:54:50 2024 -0500 @@ -0,0 +1,43 @@ +image: debian/bookworm +packages: + - qtbase5-dev + - qttools5-dev + - cmake + - clang + - libcurl4-openssl-dev + - wget + - fuse + - file + - pkg-config + # osxcross deps start + - libxml2-dev + - libssl-dev + - lzma-dev + - python3 + - xz-utils + - bzip2 + - cpio + - libbz2-1.0 + - zlib1g-dev +sources: + - https://hg.sr.ht/~mrpapersonic/minori + - https://github.com/tpoechtrager/osxcross +environment: + BUILD_SUBMITTER: hg.sr.ht + MACOSX_DEPLOYMENT_TARGET: 10.9 +tasks: + - build: | + cd osxcross/tarballs + wget "https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX10.9.sdk.tar.xz" + cd .. + export TARGET_DIR="$PWD/target" + UNATTENDED=1 ./build.sh + export PATH="$TARGET_DIR/bin:$PATH" + cd .. + osxcross-macports install qt5-qtbase qt5-qttools + CC="o64-clang" CXX="o64-clang++" CXXFLAGS="-stdlib=libc++" cmake .. -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER= -DCMAKE_CXX_COMPILER=o64-clang++ + make +triggers: + - action: email + condition: failure + to: Paper <mrpapersonic@gmail.com>