mirror of
https://github.com/rancher/os.git
synced 2025-08-14 21:15:15 +00:00
14 lines
176 B
Bash
Executable File
14 lines
176 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
if [ "$SKIP_BUILD" == "false" ]; then
|
|
echo BUILD
|
|
./scripts/build
|
|
fi
|
|
echo TEST
|
|
./scripts/test
|
|
echo VALIDATE
|
|
./scripts/validate
|