Skip to content

Commit 5a7ef3f

Browse files
[ci] disable zstd
1 parent f6380e3 commit 5a7ef3f

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/make.yml

Lines changed: 4 additions & 7 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 --disable-gdb --disable-sim --disable-readline --disable-nls --prefix="$GITHUB_WORKSPACE/binutils-install"
61+
./configure --target=z80-none-elf --with-zstd=no --disable-gdb --disable-sim --disable-readline --disable-nls --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 --disable-gdb --disable-sim --disable-readline --disable-nls --with-system-zlib --prefix="$GITHUB_WORKSPACE/binutils-install"
68+
./configure --target=z80-none-elf --with-zstd=no --disable-gdb --disable-sim --disable-readline --disable-nls --with-system-zlib --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: |
75-
PREFIX=$(cygpath -m "$GITHUB_WORKSPACE/binutils-install")
76-
./configure --target=z80-none-elf --disable-gdb --disable-sim --disable-readline --disable-nls --disable-shared --enable-static --prefix="$PREFIX"
75+
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"
7777
make configure-host && make -j4 LDFLAGS="-all-static" MAKEINFO=true && make install-strip -j4 MAKEINFO=true
7878
7979
- name: "[Unix] Tar install"
@@ -129,21 +129,18 @@ jobs:
129129
run: |
130130
cd ubuntu
131131
tar -xzvf binutils-Linux.tar.gz
132-
mv binutils-install binutils
133132
zip -r9 ../binutils_ubuntu_nightly.zip binutils
134133
135134
- name: Extract and Zip macOS Intel Artifacts
136135
run: |
137136
cd macos-intel
138137
tar -xzvf binutils-macOS.tar.gz
139-
mv binutils-install binutils
140138
zip -r9 ../binutils_macos_intel_nightly.zip binutils
141139
142140
- name: Extract and Zip macOS ARM Artifacts
143141
run: |
144142
cd macos-arm
145143
tar -xzvf binutils-macOS.tar.gz
146-
mv binutils-install binutils
147144
zip -r9 ../binutils_macos_arm_nightly.zip binutils
148145
149146
- name: Extract and Zip Windows Artifacts

0 commit comments

Comments
 (0)