Commit 44759c5 1 parent b6a90d8 commit 44759c5 Copy full SHA for 44759c5
File tree 1 file changed +19
-2
lines changed
1 file changed +19
-2
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
@@ -51,12 +52,18 @@ jobs:
51
52
run : |
52
53
$python_base = python -m site --user-base
53
54
Write-Output "$python_base\\bin" >> $GITHUB_PATH
54
- - uses : msys2/setup-msys2@v2
55
+ - name : ' Install macOS packages'
56
+ if : runner.os == 'macOS'
57
+ shell : bash
58
+ run : |
59
+ brew install ${{matrix.packages}}
60
+ - name : ' Install MSYS2 packages'
61
+ uses : msys2/setup-msys2@v2
55
62
if : runner.os == 'Windows' && matrix.generator == 'MinGW Makefiles'
56
63
with :
57
64
update : false
58
65
release : false
59
- install : make gcc
66
+ install : make gcc base-devel autotools autoconf-wrapper
60
67
- name : ' Workaround for actions/runner-images#9491'
61
68
if : runner.os == 'Linux'
62
69
run : sudo sysctl vm.mmap_rnd_bits=28
@@ -113,3 +120,13 @@ jobs:
113
120
cd build
114
121
ctest -j 4 --output-on-failure -T test -C ${BUILD_TYPE:-RelWithDebInfo}
115
122
ZONE_KERNEL=fallback ctest -j 4 --output-on-failure -T test -C ${BUILD_TYPE:-RelWithDebInfo}
123
+ - name : ' Build simdzone with configure + make'
124
+ if : runner.os != 'Windows'
125
+ id : test_autoconf
126
+ shell : bash
127
+ run : |
128
+ set -e -x
129
+ echo $PATH
130
+ autoreconf -i
131
+ ./configure
132
+ make -j 2
You can’t perform that action at this time.
0 commit comments