summaryrefslogtreecommitdiffstats
path: root/.github/workflows/dockerimages.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/dockerimages.yml')
-rw-r--r--.github/workflows/dockerimages.yml72
1 files changed, 72 insertions, 0 deletions
diff --git a/.github/workflows/dockerimages.yml b/.github/workflows/dockerimages.yml
new file mode 100644
index 000000000..10eebd0ef
--- /dev/null
+++ b/.github/workflows/dockerimages.yml
@@ -0,0 +1,72 @@
+name: Docker Image CI
+
+on:
+ push:
+ branches:
+ - master
+ paths:
+ - scripts/docker/android-build-container/Dockerfile
+ - scripts/docker/mxe-build-container/Dockerfile
+ - scripts/docker/trusty-qt512/Dockerfile
+
+
+jobs:
+ android-build-container:
+ runs-on: ubuntu-latest
+ env:
+ VERSION: 5.13.01
+
+ 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: Build the Docker image
+ run: docker build ./scripts/docker/android-build-container/ --tag docker.pkg.github.com/${GITHUB_REPOSITORY,,}/android-build-container:${VERSION}
+
+ - name: Push the Docker image
+ run: |
+ docker login docker.pkg.github.com -u ${GITHUB_REPOSITORY/\/*/} -p ${{ secrets.GITHUB_TOKEN }}
+ docker push docker.pkg.github.com/${GITHUB_REPOSITORY,,}/android-build-container:${VERSION}
+
+ mxe-build-container:
+ runs-on: ubuntu-latest
+ timeout-minutes: 720
+ env:
+ VERSION: 0.9
+
+ steps:
+ - uses: actions/checkout@v1
+ - name: Build the Docker image
+ run: docker build ./scripts/docker/mxe-build-container/ --tag docker.pkg.github.com/${GITHUB_REPOSITORY,,}/mxe-build-container:${VERSION}
+
+ - name: Push the Docker image
+ run: |
+ docker login docker.pkg.github.com -u ${GITHUB_REPOSITORY/\/*/} -p ${{ secrets.GITHUB_TOKEN }}
+ docker push docker.pkg.github.com/${GITHUB_REPOSITORY,,}/mxe-build-container:${VERSION}
+
+ trusty-qt512:
+ runs-on: ubuntu-latest
+ env:
+ VERSION: 0.7
+
+ steps:
+ - uses: actions/checkout@v1
+
+ - name: Get our pre-reqs
+ run: |
+ cd scripts/docker/trusty-qt512
+ bash getpackages.sh
+
+ - name: Build the Docker image
+ run: docker build ./scripts/docker/trusty-qt512/ --tag docker.pkg.github.com/${GITHUB_REPOSITORY,,}/trusty-qt512:${VERSION}
+
+ - name: Push the Docker image
+ run: |
+ docker login docker.pkg.github.com -u ${GITHUB_REPOSITORY/\/*/} -p ${{ secrets.GITHUB_TOKEN }}
+ docker push docker.pkg.github.com/${GITHUB_REPOSITORY,,}/trusty-qt512:${VERSION}