cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / .github / workflows / main.yml
index e75905f..3d83abb 100644 (file)
@@ -3,7 +3,16 @@
 # and attaching Windows and macOS builds, as well as the source archive.
 name: Quassel CI
 
-on: [ push, pull_request ]
+on:
+  push:
+  pull_request:
+  schedule:
+    # * is a special character in YAML so you have to quote this string
+    # Run at 13:37 on the 14th of every month (odd time to reduce load)
+    - cron: '37 13 14 * *'
+
+# Can't use simpler definition of [ push, pull_request, schedule ]
+# See https://www.jeffgeerling.com/blog/2020/running-github-actions-workflow-on-schedule-and-other-events
 
 defaults:
   run:
@@ -97,7 +106,8 @@ jobs:
       uses: maxim-lobanov/setup-xcode@v1
       with:
         # Newer Xcode versions may not officially be supported by Qt
-        xcode-version: '10.3'
+        # Check https://doc.qt.io/qt-5/macos.html
+        xcode-version: '12.4.0'
 
     - name: Check out source code
       uses: actions/checkout@v2