aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2020-01-18 14:36:08 +0000
committerJon Turney <jon.turney@dronecode.org.uk>2020-01-18 17:29:39 +0000
commit3ae34b438639a7e2fb7460dc67f078eb768b1264 (patch)
tree7b267caa8877ecbc861f46664514b4d6ef287efe /.github
parent65cb6852aedc355a00a9de00ef39372c985608c3 (diff)
downloadmeson-3ae34b438639a7e2fb7460dc67f078eb768b1264.zip
meson-3ae34b438639a7e2fb7460dc67f078eb768b1264.tar.gz
meson-3ae34b438639a7e2fb7460dc67f078eb768b1264.tar.bz2
Add macOS Qt4 framework test to ci-actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci_frameworks.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/ci_frameworks.yml b/.github/workflows/ci_frameworks.yml
index 682f5b9..7ae65d1 100644
--- a/.github/workflows/ci_frameworks.yml
+++ b/.github/workflows/ci_frameworks.yml
@@ -59,3 +59,28 @@ jobs:
with:
name: HDF5_Mac_test
path: build/meson-logs/testlog.txt
+
+ Qt4macos:
+ runs-on: macos-latest
+ steps:
+ - uses: actions/checkout@v1
+ - uses: actions/setup-python@v1
+ 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
+ - run: ninja -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