Skip to content

Commit 6974f37

Browse files
[ci] disable plugins
1 parent 9dd3655 commit 6974f37

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/make.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,22 +58,22 @@ jobs:
5858
if: runner.os == 'Linux'
5959
shell: bash
6060
run: |
61-
./configure --target=z80-none-elf --with-zstd=no --disable-gdb --disable-sim --disable-readline --disable-nls --prefix="${{ runner.temp }}/binutils"
61+
./configure --target=z80-none-elf --with-zstd=no --disable-gdb --disable-sim --disable-readline --disable-nls --disable-plugins --prefix="${{ runner.temp }}/binutils"
6262
make -j4 && make install-strip -j4
6363
6464
- name: "[macOS] Build binutils"
6565
if: runner.os == 'macOS'
6666
shell: bash
6767
run: |
68-
./configure --target=z80-none-elf --with-zstd=no --disable-gdb --disable-sim --disable-readline --disable-nls --with-system-zlib --prefix="${{ runner.temp }}/binutils"
68+
./configure --target=z80-none-elf --with-zstd=no --disable-gdb --disable-sim --disable-readline --disable-nls --disable-plugins --prefix="${{ runner.temp }}/binutils"
6969
make -j4 && make install-strip -j4
7070
7171
- name: "[Windows] Build binutils"
7272
if: runner.os == 'Windows'
7373
shell: msys2 {0}
7474
run: |
7575
PREFIX=$(cygpath -m "${{ runner.temp }}/binutils")
76-
./configure --target=z80-none-elf --with-zstd=no --disable-gdb --disable-sim --disable-readline --disable-nls --disable-shared --enable-static --prefix="$PREFIX"
76+
./configure --target=z80-none-elf --with-zstd=no --disable-gdb --disable-sim --disable-readline --disable-nls --disable-plugins --disable-shared --enable-static --prefix="$PREFIX"
7777
make configure-host && make -j4 LDFLAGS="-all-static" MAKEINFO=true && make install-strip -j4 MAKEINFO=true
7878
7979
- name: "[Unix] Install License Files"

0 commit comments

Comments
 (0)