mirror of
https://github.com/HQarroum/docker-android.git
synced 2026-07-30 11:22:18 +00:00
Initial commit
This commit is contained in:
@@ -0,0 +1,92 @@
|
||||
name: Docker Android CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
paths:
|
||||
- 'Dockerfile'
|
||||
- '.github/workflows/*'
|
||||
- 'deps/*'
|
||||
- 'keys/*'
|
||||
- 'scripts/*'
|
||||
|
||||
jobs:
|
||||
build-api-33:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
||||
- name: Build Docker image with Android 33
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
push: true
|
||||
tags: halimqarroum/docker-android:api-33
|
||||
build-args: API_LEVEL=33
|
||||
|
||||
build-api-32:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
||||
- name: Build Docker image with Android 32
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
push: true
|
||||
tags: halimqarroum/docker-android:api-32
|
||||
build-args: API_LEVEL=32
|
||||
|
||||
build-api-28:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
||||
- name: Build Docker image with Android 28
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
push: true
|
||||
tags: halimqarroum/docker-android:api-28
|
||||
build-args: |
|
||||
"API_LEVEL=28"
|
||||
"ARCHITECTURE=x86"
|
||||
|
||||
build-api-28-playstore:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
||||
- name: Build Docker image with Android 28 and the PlayStore
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
push: true
|
||||
tags: halimqarroum/docker-android:api-28-playstore
|
||||
build-args: |
|
||||
"API_LEVEL=28"
|
||||
"ARCHITECTURE=x86"
|
||||
"IMG_TYPE=google_apis_playstore"
|
||||
|
||||
build-minimal:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
||||
- name: Build minimal Docker image
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
push: true
|
||||
tags: halimqarroum/docker-android:minimal
|
||||
build-args: INSTALL_ANDROID_SDK=0
|
||||
Reference in New Issue
Block a user