Commit 0561982 1 parent 7de5773 commit 0561982 Copy full SHA for 0561982
File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 20
20
analyzer : off
21
21
sanitizer : address,undefined
22
22
- os : macos-12
23
+ packages : automake
23
24
build_type : Debug
24
25
build_tool_options : -j 4
25
26
analyzer : off
40
41
- uses : actions/setup-python@v5
41
42
with :
42
43
python-version : ' 3.x' # use latest Python 3.x
44
+ - name : ' Install packages'
45
+ if : runner.os == 'macOS'
46
+ shell : bash
47
+ run : |
48
+ brew install ${{matrix.packages}}
43
49
- name : ' Add user site-packages to PATH'
44
50
if : runner.os != 'Windows'
45
51
shell : bash
@@ -113,3 +119,12 @@ jobs:
113
119
cd build
114
120
ctest -j 4 --output-on-failure -T test -C ${BUILD_TYPE:-RelWithDebInfo}
115
121
ZONE_KERNEL=fallback ctest -j 4 --output-on-failure -T test -C ${BUILD_TYPE:-RelWithDebInfo}
122
+ - name : ' Build simdzone with configure + make'
123
+ if : runner.os != 'Windows' || matrix.generator == 'MinGW Makefiles'
124
+ id : test_autoconf
125
+ shell : bash
126
+ run : |
127
+ set -e -x
128
+ autoreconf -i
129
+ ./configure
130
+ make -j 2
You can’t perform that action at this time.
0 commit comments