aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
authorIvan Komissarov <abbapoh@gmail.com>2020-09-24 15:47:49 +0200
committerIvan Komissarov <ABBAPOH@gmail.com>2020-09-25 09:35:31 +0000
commita1156d1237ea7ad053e9048c7643208d922cd76b (patch)
tree04c5a8676a20f76838a88227474826ce9a548dce /.github/workflows/main.yml
parent2f0fa786342ff1435f86bbde34746fbe71379880 (diff)
GitHub actions: Run tests with Xcode 12
Change-Id: I339f855629c0d7cebfb4481b5516d4bfc5b778d3 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r--.github/workflows/main.yml10
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index ff7ea474d..956cedf59 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -309,6 +309,12 @@ jobs:
matrix:
config:
- {
+ name: 'Run macOS tests (Xcode 12.0)',
+ target: 'desktop',
+ toolchain: 'clang_64',
+ testProfile: 'xcode_12-macosx-x86_64',
+ }
+ - {
name: 'Run macOS tests (Xcode 11.6)',
target: 'desktop',
toolchain: 'clang_64',
@@ -321,10 +327,10 @@ jobs:
testProfile: 'xcode_10_3-macosx-x86_64',
}
- {
- name: 'Run iOS tests (Xcode 11.6)',
+ name: 'Run iOS tests (Xcode 12.0)',
target: 'ios',
toolchain: 'ios',
- testProfile: 'xcode_11_6-iphoneos-arm64',
+ testProfile: 'xcode_12-iphoneos-arm64',
}
steps:
- uses: actions/checkout@v1