feat(library): Introduce MariaDB 11.2 as library #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: library/mariadb:11.2 | |
on: | |
schedule: | |
- cron: '0 0 * * *' # Everyday at 12AM | |
push: | |
branches: [main] | |
paths: | |
- 'library/mariadb/11.2/**' | |
- '.github/workflows/library-mariadb11.2.yaml' | |
- '!library/mariadb/11.2/README.md' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: [main] | |
paths: | |
- 'library/mariadb/11.2/**' | |
- '.github/workflows/library-mariadb11.2.yaml' | |
- '!library/mariadb/11.2/README.md' | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- plat: qemu | |
arch: x86_64 | |
- plat: fc | |
arch: x86_64 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build mariadb11.2 | |
uses: unikraft/kraftkit@staging | |
with: | |
loglevel: debug | |
workdir: library/mariadb/11.2 | |
runtimedir: /github/workspace/.kraftkit | |
plat: ${{ matrix.plat }} | |
arch: ${{ matrix.arch }} | |
push: false | |
output: oci://index.unikraft.io/unikraft.org/mariadb:11.2 | |
- name: Archive OCI digests | |
uses: actions/upload-artifact@v3 | |
with: | |
name: oci-digests-${{ matrix.arch }}-${{ matrix.plat }} | |
path: ${{ github.workspace }}/.kraftkit/oci/digests | |
if-no-files-found: error | |
push: | |
if: ${{ github.event_name == 'push' || github.event_name == 'schedule' }} | |
needs: [ build ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Login to OCI registry | |
uses: docker/login-action@v2 | |
with: | |
registry: index.unikraft.io | |
username: ${{ secrets.REG_USERNAME }} | |
password: ${{ secrets.REG_TOKEN }} | |
- name: Retrieve, merge and push OCI digests | |
uses: ./.github/actions/merge-oci-digests | |
with: | |
name: index.unikraft.io/unikraft.org/mariadb:11.2 | |
push: true |