mirror of
https://github.com/rancher/os.git
synced 2025-06-19 03:31:55 +00:00
21 lines
319 B
Bash
Executable File
21 lines
319 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
echo BUILD
|
|
./scripts/build
|
|
echo TEST
|
|
./scripts/test
|
|
echo VALIDATE
|
|
./scripts/validate
|
|
|
|
# Drone servers kernel too old, and the integration tests often time out
|
|
#echo PREPARE
|
|
#./scripts/prepare
|
|
#echo PACKAGE
|
|
#./scripts/package
|
|
#echo INTEGRATION-TEST
|
|
#./scripts/integration-test
|
|
|