mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 21:19:10 +00:00
* add binary size check script, makefile target, and added to drone Signed-off-by: Brian Downs <brian.downs@gmail.com> * move script call to package script Signed-off-by: Brian Downs <brian.downs@gmail.com> * move script call to ci script Signed-off-by: Brian Downs <brian.downs@gmail.com>
14 lines
142 B
Bash
Executable File
14 lines
142 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
./download
|
|
if [ -z "$SKIP_VALIDATE" ]; then
|
|
./validate
|
|
fi
|
|
|
|
./build
|
|
./package
|
|
./binary_size_check.sh
|