aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/macos.yml
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-11-10 16:05:04 -0800
committerDylan Baker <dylan@pnwbakers.com>2020-11-11 07:42:40 -0800
commit33729240076d6b812116374edc5defbdaffcebbf (patch)
tree422ac7dfb86aa59a275859f1ff201a0d3d64ed90 /.github/workflows/macos.yml
parentfd27dfe649d9764eee5f0dfe63457db653db6414 (diff)
downloadmeson-33729240076d6b812116374edc5defbdaffcebbf.zip
meson-33729240076d6b812116374edc5defbdaffcebbf.tar.gz
meson-33729240076d6b812116374edc5defbdaffcebbf.tar.bz2
CI: combine macos and ci_frameworks actions
We're already covering most of the actions through the generic macos actions, but we should keep the qt4 action.
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r--.github/workflows/macos.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index f793692..bf559e8 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -58,3 +58,28 @@ jobs:
export SDKROOT="$(xcodebuild -version -sdk macosx Path)"
export PATH="$HOME/tools:/usr/local/opt/qt/bin:$PATH:$(brew --prefix llvm)/bin"
./run_project_tests.py --backend=ninja
+
+ Qt4macos:
+ runs-on: macos-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-python@v2
+ with:
+ python-version: '3.x'
+ - run: python -m pip install -e .
+ - run: brew install pkg-config ninja gcc
+ - run: brew tap cartr/qt4
+ - run: brew install qt@4
+ - run: meson setup "test cases/frameworks/4 qt" build -Drequired=qt4
+ - run: meson compile -C build
+ - uses: actions/upload-artifact@v1
+ if: failure()
+ with:
+ name: Qt4_Mac_build
+ path: build/meson-logs/meson-log.txt
+ - run: meson test -C build -v
+ - uses: actions/upload-artifact@v1
+ if: failure()
+ with:
+ name: Qt4_Mac_test
+ path: build/meson-logs/testlog.txt