File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,18 @@ clang_dir = $PWD/clang
8
8
tests_root_dir = $PWD /retdec-regression-tests
9
9
; Path to the RetDec's installation directory.
10
10
retdec_install_dir = $PWD /install
11
+
12
+ ; 2019-09-05: On macOS, we have to skip tests that compile output C files
13
+ ; because newer Xcode versions no longer support compilation into 32b binaries:
14
+ ;
15
+ ; "The macOS 10.14 SDK no longer contains support for compiling 32-bit applications.
16
+ ; If developers need to compile for i386, Xcode 9.4 or earlier is required."
17
+ ;
18
+ ; We cannot compile into 64b binaries because of RetDec shortcomings
19
+ ; (https://github.com/avast/retdec/issues/213). So, we decided to skip tests that
20
+ ; compile output C files when running regression tests on macOS.
21
+ skip_c_compilation_tests = 0
22
+
11
23
EOF
12
24
13
25
cd " $PWD /retdec-regression-tests-framework"
Original file line number Diff line number Diff line change 23
23
strategy :
24
24
matrix :
25
25
sys :
26
- - { os: windows-latest, shell: 'msys2 {0}' }
27
26
- { os: ubuntu-latest, shell: bash }
28
- - { os: macos-latest, shell: bash }
27
+ - { os: windows-latest, shell: 'msys2 {0}' }
28
+ - { os: macos-11, shell: bash }
29
29
type : [Release, Debug]
30
30
31
31
# Let other builds finish.
You can’t perform that action at this time.
0 commit comments