Commit 6222eac5 authored by nanahira's avatar nanahira

build zstd

parent 33b3b48b
Pipeline #15389 failed
variables:
GIT_DEPTH: "1"
ARIA2_VERSION: '1.36.0'
ZSTD_VERSION: '1.5.2'
stages:
- prepare
......@@ -18,36 +19,45 @@ aria2_src:
#- cd aria2-src
#- autoreconf -i
#- cd ..
- mkdir aria2-src
- wget -O - https://github.com/aria2/aria2/releases/download/release-${ARIA2_VERSION}/aria2-${ARIA2_VERSION}.tar.gz | tar --strip-components=1 -C aria2-src -zxf -
- mkdir -p src/aria2 src/zstd
- wget -O - https://github.com/aria2/aria2/releases/download/release-${ARIA2_VERSION}/aria2-${ARIA2_VERSION}.tar.gz | tar --strip-components=1 -C src/aria2 -zxf -
- wget -O https://github.com/facebook/zstd/releases/download/v${ZSTD_VERSION}/zstd-${ZSTD_VERSION}.tar.gz | tar --strip-components=1 -C src/zstd -zxf -
artifacts:
paths:
- aria2-src
- src
.macOS_bin_arch:
stage: build
before_script:
- brew install automake autoconf libtool pkg-config docutils libxml2 git gnu-tar zstd
- brew install automake autoconf libtool pkg-config docutils libxml2 git gnu-tar lz4 xz dylibbundler
dependencies:
- aria2_src
- src
artifacts:
paths:
- arch-bin
script:
# gtar
- mkdir -p arch-bin/${targetArch}
- cp -L -f ${homebrewRoot}/bin/gtar arch-bin/${targetArch}/
# zstd
- cd src/zstd
- make -j4
- cp -L -f ./zstd ../../arch-bin/${targetArch}/
- cd ../../arch-bin/${targetArch}/
- dylibbundler -x ./zstd -b -d libs-${targetArch} -p @executable_path/libs-${targetArch} -of -cd
- cd ../..
# aria2
- export PATH=${PATH}:${homebrewRoot}/opt/gettext/bin
- export PKG_CONFIG_PATH="${homebrewRoot}/opt/libxml2/lib/pkgconfig"
- export LDFLAGS="-L${homebrewRoot}/opt/libxml2/lib"
- export CPPFLAGS="-I${homebrewRoot}/opt/libxml2/include"
- cd aria2-src
- cd src/aria2
- mv ../aria2-makefiles/Makefile.${targetArch} ./Makefile.release
- make -f ./Makefile.release aria2.${targetArch}.build
- cd ..
- mkdir -p arch-bin/${targetArch}
- cp -L -f ${homebrewRoot}/bin/gtar arch-bin/${targetArch}/
- cp -L -f ${homebrewRoot}/bin/zstd arch-bin/${targetArch}/
- mv aria2-src/aria2.${targetArch}/src/aria2c arch-bin/${targetArch}/
- mv aria2.${targetArch}/src/aria2c ../../arch-bin/${targetArch}/
- cd ../..
macOS_bin_x86_64:
extends: .macOS_bin_arch
......@@ -79,8 +89,10 @@ macOS_bin:
- brew install gnu-tar zstd
- mkdir -p bin dist
- cd arch-bin/x86_64
- ls -1 | xargs -I {} lipo -create -output ../../bin/{} {} ../arm64/{}
- ls -1 | sed '/^libs-/d' | xargs -I {} lipo -create -output ../../bin/{} {} ../arm64/{}
- cd ../../
- mv arch-bin/x86_64/libs-x86_64 ./bin/
- mv arch-bin/arm64/libs-arm64 ./bin/
- gtar zcvf ./dist/mycard-mat-macos.tar.gz bin
windows_bin:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment