mirror of
https://github.com/k3s-io/k3s.git
synced 2026-04-14 13:56:41 -04: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>
13 lines
142 B
Bash
Executable file
13 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
|