Skip to content

Split pki-tomcat.jar #791

Split pki-tomcat.jar

Split pki-tomcat.jar #791

Workflow file for this run

name: Build PKI
on: [push, pull_request]
env:
COPR_REPO: ${{ vars.COPR_REPO || '@pki/master' }}
jobs:
init:
name: Initialization
uses: ./.github/workflows/init.yml
secrets: inherit
# docs/development/Building_PKI.md
build:
name: Building PKI
needs: init
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Cache Docker layers
id: cache-buildx
uses: actions/cache@v3
with:
key: buildx-${{ hashFiles('pki.spec') }}
path: /tmp/.buildx-cache
- name: Build pki-deps image
uses: docker/build-push-action@v3
with:
context: .
build-args: |
BASE_IMAGE=${{ needs.init.outputs.base-image }}
COPR_REPO=${{ env.COPR_REPO }}
tags: pki-deps
target: pki-deps
cache-to: type=local,dest=/tmp/.buildx-cache
if: steps.cache-buildx.outputs.cache-hit != 'true'
- name: Build pki-builder-deps image
uses: docker/build-push-action@v3
with:
context: .
build-args: |
BASE_IMAGE=${{ needs.init.outputs.base-image }}
COPR_REPO=${{ env.COPR_REPO }}
tags: pki-builder-deps
target: pki-builder-deps
cache-to: type=local,dest=/tmp/.buildx-cache
if: steps.cache-buildx.outputs.cache-hit != 'true'
- name: Build pki-builder image
uses: docker/build-push-action@v3
with:
context: .
build-args: |
BASE_IMAGE=${{ needs.init.outputs.base-image }}
COPR_REPO=${{ env.COPR_REPO }}
tags: pki-builder
target: pki-builder
cache-from: type=local,src=/tmp/.buildx-cache
outputs: type=docker
- name: Build pki-dist image
uses: docker/build-push-action@v3
with:
context: .
build-args: |
BASE_IMAGE=${{ needs.init.outputs.base-image }}
COPR_REPO=${{ env.COPR_REPO }}
tags: pki-dist
target: pki-dist
cache-from: type=local,src=/tmp/.buildx-cache
outputs: type=docker
- name: Build pki-runner image
uses: docker/build-push-action@v3
with:
context: .
build-args: |
BASE_IMAGE=${{ needs.init.outputs.base-image }}
COPR_REPO=${{ env.COPR_REPO }}
tags: pki-runner
target: pki-runner
cache-from: type=local,src=/tmp/.buildx-cache
outputs: type=docker
- name: Build pki-server image
uses: docker/build-push-action@v3
with:
context: .
build-args: |
BASE_IMAGE=${{ needs.init.outputs.base-image }}
COPR_REPO=${{ env.COPR_REPO }}
tags: pki-server
target: pki-server
cache-from: type=local,src=/tmp/.buildx-cache
outputs: type=docker
- name: Build pki-ca image
uses: docker/build-push-action@v3
with:
context: .
build-args: |
BASE_IMAGE=${{ needs.init.outputs.base-image }}
COPR_REPO=${{ env.COPR_REPO }}
tags: pki-ca
target: pki-ca
cache-from: type=local,src=/tmp/.buildx-cache
outputs: type=docker
- name: Save PKI images
run: |
docker images
docker save -o pki-images.tar pki-dist pki-runner pki-server pki-ca
- name: Store PKI images
uses: actions/cache@v3
with:
key: pki-images-${{ github.sha }}
path: pki-images.tar