Skip to content

library/dragonfly:1.14 #37

library/dragonfly:1.14

library/dragonfly:1.14 #37

name: library/dragonfly:1.14
on:
schedule:
- cron: '0 0 * * *' # Everyday at 12AM
push:
branches: [main]
paths:
- 'library/dragonfly/1.14/**'
- '.github/workflows/library-dragonfly1.14.yaml'
- '!library/dragonfly/1.14/README.md'
pull_request:
types: [opened, synchronize, reopened]
branches: [main]
paths:
- 'library/dragonfly/1.14/**'
- '.github/workflows/library-dragonfly1.14.yaml'
- '!library/dragonfly/1.14/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 dragonfly1.14
uses: unikraft/kraftkit@staging
with:
loglevel: debug
workdir: library/dragonfly/1.14
runtimedir: /github/workspace/.kraftkit
plat: ${{ matrix.plat }}
arch: ${{ matrix.arch }}
push: false
output: oci://index.unikraft.io/unikraft.org/dragonfly:1.14
- 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/dragonfly:1.14
push: true