File tree Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 6161 docker :
6262 - image : filecoin/rust:latest
6363 working_directory : /mnt/crate
64- resource_class : xlarge
64+ resource_class : 2xlarge
6565 steps :
6666 - configure_environment_variables
6767 - checkout
8383 docker :
8484 - image : filecoin/rust:latest
8585 working_directory : /mnt/crate
86- resource_class : xlarge
86+ resource_class : 2xlarge
8787 steps :
8888 - configure_environment_variables
8989 - checkout
Original file line number Diff line number Diff line change 55* .h
66* .a
77.install-filecoin
8+ ** /paramcache
Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ if [ "${FFI_BUILD_FROM_SOURCE}" != "1" ] && download_release_tarball tarball_pat
1111 tmp_dir=$( mktemp -d)
1212 tar -C " $tmp_dir " -xzf " $tarball_path "
1313
14- cp " ${tmp_dir} /include/ filecoin.h" .
15- cp " ${tmp_dir} /lib/ libfilecoin.a" .
16- cp " ${tmp_dir} /lib/pkgconfig/ filecoin.pc" .
17- cp " ${tmp_dir} /bin/ paramcache" .
14+ find -L " ${tmp_dir} " -type f -name filecoin.h -exec cp -- " {} " . \;
15+ find -L " ${tmp_dir} " -type f -name libfilecoin.a -exec cp -- " {} " . \;
16+ find -L " ${tmp_dir} " -type f -name filecoin.pc -exec cp -- " {} " . \;
17+ find -L " ${tmp_dir} " -type f -name paramcache -exec cp -- " {} " . \;
1818
1919 (>&2 echo " successfully installed prebuilt libfilecoin" )
2020else
Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ TAR_PATH=`mktemp -d`
1212
1313mkdir -p $TAR_PATH
1414
15- find . -L -type f -name filecoin.h -exec cp -- " {}" $TAR_PATH / \;
16- find . -L -type f -name libfilecoin.a -exec cp -- " {}" $TAR_PATH / \;
17- find . -L -type f -name filecoin.pc -exec cp -- " {}" $TAR_PATH / \;
15+ find -L . -type f -name filecoin.h -exec cp -- " {}" $TAR_PATH / \;
16+ find -L . -type f -name libfilecoin.a -exec cp -- " {}" $TAR_PATH / \;
17+ find -L . -type f -name filecoin.pc -exec cp -- " {}" $TAR_PATH / \;
1818
1919pushd $TAR_PATH
2020
You can’t perform that action at this time.
0 commit comments