mirror of
https://github.com/JaCzekanski/Avocado.git
synced 2025-04-02 10:52:39 -04:00
11 lines
287 B
Bash
Executable file
11 lines
287 B
Bash
Executable file
#!/bin/bash -ex
|
|
# Run in Travis to launch container
|
|
|
|
mkdir -p "$HOME/.ccache"
|
|
|
|
docker run \
|
|
-v $(pwd):/home/build \
|
|
-v "$HOME/.ccache":/root/.ccache \
|
|
-e keystore_password="$keystore_password" \
|
|
avocadoemu/android \
|
|
/bin/bash -ex /home/build/.travis/android/build.sh
|