Skip to content

common: force rebuild docker images #12

common: force rebuild docker images

common: force rebuild docker images #12

Workflow file for this run

# Rebuild docker images if needed.
name: Docker rebuild
on:
workflow_dispatch:
pull_request:
branches:
- master
paths:
- 'utils/docker/images/**'
- '.github/workflows/docker_rebuild.yml'
push:
branches:
- master
paths:
- 'utils/docker/images/**'
- '.github/workflows/docker_rebuild.yml'
schedule:
# run this job at 22:00 UTC every other day (hopefully just before the nightly)
- cron: '0 22 */2 * *'
env:
# use org's Private Access Token to log in to GitHub Container Registry
GH_CR_USER: ${{ secrets.GH_CR_USER }}
GH_CR_PAT: ${{ secrets.GH_CR_PAT }}
GITHUB_REPO: pmem/pmdk
DOCKER_REPO: ghcr.io/pmem/pmdk
WORKDIR: utils/docker
PUSH_IMAGE: 1
jobs:
image:
if: github.repository == 'pmem/pmdk'
name: Image
runs-on: ubuntu-latest
strategy:
matrix:
CONFIG: [
"OS=centos OS_VER=7",
"OS=centos OS_VER=stream",
"OS=debian OS_VER=11",
"OS=fedora OS_VER=37",
"OS=opensuse-leap OS_VER=15",
"OS=rockylinux OS_VER=8",
"OS=rockylinux OS_VER=9",
"OS=ubuntu OS_VER=22.04",
]
steps:
- name: Clone the git repo
uses: actions/checkout@v3
- name: Pull or rebuild the image
run: cd $WORKDIR && ${{ matrix.CONFIG }} ./pull-or-rebuild-image.sh rebuild