mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-02-25 20:11:20 +01:00
* Install requited locale in container image One of the IMAP tests curiuosly ran successfully on Github-runners, but failed locally. This is the pre-condition for a fix. * Explicitly require mandatory locale for test This test works only if executed with LC_COLLATE=en_US * Schedule to rebuild testrunner image each week
52 lines
1.4 KiB
YAML
52 lines
1.4 KiB
YAML
name: roundcubemail-testrunner image
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '.ci/docker-images/*'
|
|
- '.github/workflows/docker_image.yml'
|
|
schedule:
|
|
# Rebuild automatically each monday early morning.
|
|
- cron: "42 5 * * 1"
|
|
|
|
jobs:
|
|
build_and_push:
|
|
strategy:
|
|
fail-fast: false
|
|
# Set up a matrix so we can add more versions to build with in the future.
|
|
matrix:
|
|
php: ["8.3"]
|
|
|
|
name: build and push with PHP ${{ matrix.php }}
|
|
runs-on: ubuntu-latest
|
|
# Set the permissions granted to the GITHUB_TOKEN for the actions in this job.
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
attestations: write
|
|
id-token: write
|
|
steps:
|
|
- name: Check actor permission
|
|
uses: skjnldsv/check-actor-permission@v3
|
|
with:
|
|
require: admin
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v4
|
|
- name: Log in to the Container registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Build and push Docker image
|
|
id: push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: ./.ci/docker-images/Dockerfile
|
|
push: true
|
|
#platforms: linux/amd64,linux/arm64
|
|
build-args: PHPVERSION=${{ matrix.php }}
|
|
tags: "ghcr.io/roundcube/roundcubemail-testrunner:php${{ matrix.php }}"
|
|
|