Skip to content

Build

Build #7

Workflow file for this run

---
name: Build
on:
pull_request:
push:
branches:
- master
schedule:
- cron: "10 1 * * 0"
jobs:
# Test the image builds and works correctly.
test:
name: Test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Test building image.
run: docker build -t azp-ubuntu-jammy .
- name: Run the built image.
run: docker run --name test-container -d --privileged -v /sys/fs/cgroup:/sys/fs/cgroup:ro azp-ubuntu-jammy
# If on main branch, build and release image.
release:
name: Release
runs-on: ubuntu-22.04
needs: test
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v1
- uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push image.
uses: docker/build-push-action@v3
with:
context: ./
file: Dockerfile
platforms: linux/amd64,linux/arm64,linux/arm
push: true
tags: ${{ github.repository }}:latest
- name: Update repo description
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
short-description: ${{ github.event.repository.description }}