14 lines
134 B
Bash
Executable File
14 lines
134 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# CI script
|
|
|
|
set -ex -o xtrace
|
|
|
|
pushd ACardEmulator
|
|
|
|
git submodule update --init --recursive .
|
|
|
|
./gradlew assemble
|
|
|
|
popd
|