Skip to content

Commit 91658d4

Browse files
[ci] exclude lib folder
1 parent 6974f37 commit 91658d4

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
@@ -65,7 +65,7 @@ jobs:
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 --disable-plugins --prefix="${{ runner.temp }}/binutils"
68+
./configure --target=z80-none-elf --with-zstd=no --disable-gdb --disable-sim --disable-readline --disable-nls --disable-plugins --with-system-zlib --prefix="${{ runner.temp }}/binutils"
6969
make -j4 && make install-strip -j4
7070
7171
- name: "[Windows] Build binutils"
@@ -97,15 +97,15 @@ jobs:
9797
if: runner.os != 'Windows'
9898
shell: bash
9999
run: |
100-
cd ${{ runner.temp }} && tar -chzvf binutils-${{ runner.os }}.${{ matrix.install-output-ext }} --exclude='z80-none-elf' binutils
100+
cd ${{ runner.temp }} && tar -chzvf binutils-${{ runner.os }}.${{ matrix.install-output-ext }} --exclude='z80-none-elf' --exclude='lib' binutils
101101
mv ${{ runner.temp }}/binutils-${{ runner.os }}.${{ matrix.install-output-ext }} ${{github.workspace}}
102102
103103
- name: "[Windows] Tar install"
104104
if: runner.os == 'Windows'
105105
shell: pwsh
106106
run: |
107107
Set-Location "${{ runner.temp }}"
108-
tar -chzvf "binutils-${{ runner.os }}.${{ matrix.install-output-ext }}" --exclude='z80-none-elf' binutils
108+
tar -chzvf "binutils-${{ runner.os }}.${{ matrix.install-output-ext }}" --exclude='z80-none-elf' --exclude='lib' binutils
109109
Move-Item "binutils-${{ runner.os }}.${{ matrix.install-output-ext }}" "${{ github.workspace }}"
110110
111111
- name: Upload binutils

0 commit comments

Comments
 (0)