2023-12-19 00:42:00 +08:00
|
|
|
name: post-submit
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-alpine-s390x:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Set up Docker Buildx
|
2023-12-22 08:18:59 +08:00
|
|
|
uses: docker/setup-buildx-action@v3
|
2023-12-19 00:42:00 +08:00
|
|
|
- name: Docker Build
|
2023-12-22 08:18:59 +08:00
|
|
|
uses: docker/build-push-action@v4
|
2023-12-19 00:42:00 +08:00
|
|
|
with:
|
|
|
|
file: other/docker/alpine-s390x/Dockerfile
|
2023-12-22 08:18:59 +08:00
|
|
|
|
|
|
|
docker-coverage:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
with:
|
|
|
|
driver: docker
|
|
|
|
- name: Login to DockerHub
|
|
|
|
if: ${{ github.event_name == 'push' }}
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Build toxchat/c-toxcore:sources
|
|
|
|
uses: docker/build-push-action@v4
|
|
|
|
with:
|
2024-01-30 06:56:31 +08:00
|
|
|
file: other/docker/sources/sources.Dockerfile
|
2023-12-22 08:18:59 +08:00
|
|
|
tags: toxchat/c-toxcore:sources
|
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v4
|
|
|
|
with:
|
2024-01-30 17:11:44 +08:00
|
|
|
file: other/docker/coverage/coverage.Dockerfile
|
2023-12-22 08:18:59 +08:00
|
|
|
push: ${{ github.event_name == 'push' }}
|
|
|
|
tags: toxchat/c-toxcore:coverage
|
|
|
|
cache-from: type=registry,ref=toxchat/c-toxcore:coverage
|
|
|
|
cache-to: type=inline
|