https://github.com/jeziellago/minimal-android-ci
Minimal container for android builds.
https://github.com/jeziellago/minimal-android-ci
Last synced: 3 months ago
JSON representation
Minimal container for android builds.
- Host: GitHub
- URL: https://github.com/jeziellago/minimal-android-ci
- Owner: jeziellago
- Created: 2020-06-14T22:35:55.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-17T01:40:00.000Z (over 5 years ago)
- Last Synced: 2025-03-30T08:29:55.008Z (6 months ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Minimal Android CI
## Build Docker Image
```
cd minimal-android-ci/docker build . -t android-ci:1.0
```
## Create container and start CI
Put your workflow build steps on `ci.sh` and run:
```
docker run -id --name=android-ci android-ci:1.0 \
&& docker cp ci.sh android-ci:/ \
&& docker exec android-ci bash ci.sh
```
## Configure Github Token for Private Repositories
```
./configure_github_token.sh android-ci [TOKEN]
```