mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 06:15:26 +00:00
GitHub Actions: let CI build docker images
This create a GitHub Actions workflow to build the docker images we use in our CI workflows. Signed-off-by: Anton Lundin <glance@acc.umu.se>
This commit is contained in:
parent
2048c7f73d
commit
6612297022
4 changed files with 81 additions and 0 deletions
3
.github/workflows/android.yml
vendored
3
.github/workflows/android.yml
vendored
|
@ -11,6 +11,9 @@ jobs:
|
|||
buildInContainer:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
# FIXME: Use templating once we can mangle org/repo name into something that docker accepts.
|
||||
# and anonymus / actions access to github packages works.
|
||||
#image: docker://docker.pkg.github.com/${{ github.repository }}/android-builder:5.13.01
|
||||
image: docker://dirkhh/android-builder:5.13.01
|
||||
|
||||
steps:
|
||||
|
|
72
.github/workflows/dockerimages.yml
vendored
Normal file
72
.github/workflows/dockerimages.yml
vendored
Normal file
|
@ -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}
|
3
.github/workflows/linux-trusty-5.12.yml
vendored
3
.github/workflows/linux-trusty-5.12.yml
vendored
|
@ -11,6 +11,9 @@ jobs:
|
|||
buildInContainer:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
# FIXME: Use templating once we can mangle org/repo name into something that docker accepts.
|
||||
# and anonymus / actions access to github packages works.
|
||||
#image: docker://docker.pkg.github.com/${{ github.repository }}/trusty-qt512:0.7
|
||||
image: docker://dirkhh/trusty-qt512:0.7
|
||||
|
||||
steps:
|
||||
|
|
3
.github/workflows/windows.yml
vendored
3
.github/workflows/windows.yml
vendored
|
@ -11,6 +11,9 @@ jobs:
|
|||
buildInContainer:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
# FIXME: Use templating once we can mangle org/repo name into something that docker accepts.
|
||||
# and anonymus / actions access to github packages works.
|
||||
#image: docker://docker.pkg.github.com/${{ github.repository }}/mxe-build-container:0.9
|
||||
image: docker://dirkhh/mxe-build-container:0.9
|
||||
|
||||
steps:
|
||||
|
|
Loading…
Add table
Reference in a new issue