File tree Expand file tree Collapse file tree 3 files changed +4
-9
lines changed Expand file tree Collapse file tree 3 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,6 @@ jobs:
170
170
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag=v4.2.2
171
171
- name : LZ4, thread pool, and libs build testslib wrapper test
172
172
run : |
173
- make lz4install
174
173
make -C tests test-lz4
175
174
make check < /dev/null | tee # mess with lz4 console detection
176
175
make clean
Original file line number Diff line number Diff line change @@ -351,7 +351,7 @@ apt-add-repo:
351
351
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
352
352
sudo apt-get update -y -qq
353
353
354
- .PHONY : ppcinstall arminstall valgrindinstall libc6install gcc6install gcc7install gcc8install gpp6install clang38install lz4install
354
+ .PHONY : ppcinstall arminstall valgrindinstall libc6install gcc6install gcc7install gcc8install gpp6install clang38install
355
355
ppcinstall :
356
356
APT_PACKAGES=" qemu-system-ppc qemu-user-static gcc-powerpc-linux-gnu" $(MAKE ) apt-install
357
357
@@ -379,10 +379,6 @@ gpp6install: apt-add-repo
379
379
clang38install :
380
380
APT_PACKAGES=" clang-3.8" $(MAKE ) apt-install
381
381
382
- # Ubuntu 14.04 ships a too-old lz4
383
- lz4install :
384
- [ -e lz4 ] || git clone https://github.com/lz4/lz4 && sudo $(MAKE ) -C lz4 install
385
-
386
382
endif
387
383
388
384
Original file line number Diff line number Diff line change @@ -447,9 +447,9 @@ test-decodecorpus-cli: decodecorpus
447
447
test-pool : poolTests
448
448
$(QEMU_SYS ) ./poolTests
449
449
450
- test-lz4 : ZSTD = LD_LIBRARY_PATH=/usr/local/lib $(PRGDIR ) /zstd
451
- test-lz4 : ZSTD_LZ4 = LD_LIBRARY_PATH=/usr/local/lib ./lz4
452
- test-lz4 : ZSTD_UNLZ4 = LD_LIBRARY_PATH=/usr/local/lib ./unlz4
450
+ test-lz4 : ZSTD = $(PRGDIR ) /zstd
451
+ test-lz4 : ZSTD_LZ4 = ./lz4
452
+ test-lz4 : ZSTD_UNLZ4 = ./unlz4
453
453
test-lz4 : zstd decodecorpus datagen
454
454
[ -f lz4 ] || ln -s $(PRGDIR ) /zstd lz4
455
455
[ -f unlz4 ] || ln -s $(PRGDIR ) /zstd unlz4
You can’t perform that action at this time.
0 commit comments