12 lines
88 B
Bash
Executable File
12 lines
88 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# CI script
|
|
|
|
set -ex -o xtrace
|
|
|
|
pushd remote-reader
|
|
|
|
./gradlew build
|
|
|
|
popd
|