aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/android-dockerimage.yml
blob: 106bd99b901c004a0b65fed59620a55343a8eb01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Android Docker Image CI

on:
  push:
    paths:
    - scripts/docker/android-build-container/Dockerfile
    - .github/workflows/android-docker*

jobs:
  android-build-container:
    runs-on: ubuntu-latest
    env:
      VERSION: ${{ '5.13.10' }} # the version numbers here is based on the Qt version, the third digit is the rev of the docker image

    steps:
    - uses: actions/checkout@v1

    - name: Get our pre-reqs
      run: |
          cd scripts/docker/android-build-container
          bash download.sh
          sed -ie 's/^sudo/#sudo/' setup-docker.sh
          bash setup-docker.sh

    - name: set env
      run: |
        v=${{ env.VERSION }}
        b=${{ github.ref }} # -BRANCH suffix, unless the branch is master
        b=${b/refs\/heads\//}
        b=${b,,} # the name needs to be all lower case
        if [ $b = "master" ] ; then b="" ; else b="-$b" ; fi
        echo "::set-env name=NAME::subsurface/android-build-container${b}:${v}"

    - name: Build and Publish Linux Docker image to Dockerhub
      uses: elgohr/Publish-Docker-Github-Action@master
      with:
        name:       ${{ env.NAME }}
        username:   ${{ secrets.DOCKER_USERNAME }}
        password:   ${{ secrets.DOCKER_PASSWORD }}
        dockerfile: 'Dockerfile'
        workdir:    './scripts/docker/android-build-container/'