Skip to content

Commit a22ca6f

Browse files
committed
only mingw this time
1 parent b17fc8d commit a22ca6f

File tree

1 file changed

+22
-24
lines changed

1 file changed

+22
-24
lines changed

.github/workflows/build-test.yml

+22-24
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,26 @@ jobs:
88
strategy:
99
matrix:
1010
include:
11-
- os: ubuntu-22.04
12-
cc: gcc
13-
build_type: Debug
14-
build_tool_options: -j 4
15-
analyzer: off
16-
- os: ubuntu-22.04
17-
cc: clang
18-
build_type: Debug
19-
build_tool_options: -j 4
20-
analyzer: off
21-
sanitizer: address,undefined
22-
- os: macos-12
23-
packages: automake
24-
build_type: Debug
25-
build_tool_options: -j 4
26-
analyzer: off
27-
- os: windows-2022
28-
generator: "Visual Studio 17 2022"
29-
build_type: Debug
30-
build_tool_options: "-nologo -verbosity:minimal -maxcpucount:4 -p:CL_MPCount=4"
11+
# - os: ubuntu-22.04
12+
# cc: gcc
13+
# build_type: Debug
14+
# build_tool_options: -j 4
15+
# analyzer: off
16+
# - os: ubuntu-22.04
17+
# cc: clang
18+
# build_type: Debug
19+
# build_tool_options: -j 4
20+
# analyzer: off
21+
# sanitizer: address,undefined
22+
# - os: macos-12
23+
# packages: automake
24+
# build_type: Debug
25+
# build_tool_options: -j 4
26+
# analyzer: off
27+
# - os: windows-2022
28+
# generator: "Visual Studio 17 2022"
29+
# build_type: Debug
30+
# build_tool_options: "-nologo -verbosity:minimal -maxcpucount:4 -p:CL_MPCount=4"
3131
- os: windows-2022
3232
cc: 'C:/mingw64/bin/gcc.exe'
3333
generator: 'MinGW Makefiles'
@@ -63,7 +63,7 @@ jobs:
6363
with:
6464
update: false
6565
release: false
66-
install: make gcc autotools autoconf-wrapper automake-wrapper
66+
install: make gcc base-devel autotools autoconf-wrapper automake-wrapper
6767
- name: 'Workaround for actions/runner-images#9491'
6868
if: runner.os == 'Linux'
6969
run: sudo sysctl vm.mmap_rnd_bits=28
@@ -126,8 +126,6 @@ jobs:
126126
shell: bash
127127
run: |
128128
set -e -x
129-
export WANT_AUTOCONF='2.72'
130-
autoreconf -i || echo "PATH: $PATH"
131-
which autoreconf
129+
/usr/bin/autoreconf -i
132130
./configure
133131
make -j 2 || cat .depend

0 commit comments

Comments
 (0)