mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
f72d39ad9c
* 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
|