-
Notifications
You must be signed in to change notification settings - Fork 269
54 lines (45 loc) · 2.05 KB
/
ubi8-asciidoctor-pr.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: ubi8-asciidoctor-pr
on:
pull_request:
paths:
- utilities/ubi8-asciidoctor/**
- .github/workflows/ubi8-asciidoctor-pr.yaml
# Declare default permissions as read only.
permissions: read-all
jobs:
build:
env:
context: utilities/ubi8-asciidoctor
image_name: ubi8-asciidoctor
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Check and verify version.json
id: check_version
uses: redhat-cop/github-actions/get-image-version@11f2ce27643eb7c76ac3623cb99d9b08be30d762 # v4
with:
IMAGE_CONTEXT_DIR: ${{ env.context }}
- name: Install qemu dependency
run: |
sudo apt-get update
sudo apt-get install -y qemu-user-static
- name: Build image
uses: redhat-actions/buildah-build@7a95fa7ee0f02d552a32753e7414641a04307056 # v2
with:
context: ${{ env.context }}
dockerfiles: |
./${{ env.context }}/Dockerfile
image: ${{ env.image_name }}
platforms: linux/amd64,linux/arm64
oci: true
tags: ${{ steps.check_version.outputs.IMAGE_TAGS }}
- name: Test image
run: |
echo "Running: podman run ${image_name}:${{ steps.check_version.outputs.VERSION }} git --version"
podman run ${image_name}:${{ steps.check_version.outputs.VERSION }} git --version
echo "Running: podman run ${image_name}:${{ steps.check_version.outputs.VERSION }} asciidoctor --version"
podman run ${image_name}:${{ steps.check_version.outputs.VERSION }} asciidoctor --version
echo "Running: podman run ${image_name}:${{ steps.check_version.outputs.VERSION }} asciidoctor-pdf --version"
podman run ${image_name}:${{ steps.check_version.outputs.VERSION }} asciidoctor-pdf --version
echo "Running: podman run ${image_name}:${{ steps.check_version.outputs.VERSION }} pandoc --version"
podman run ${image_name}:${{ steps.check_version.outputs.VERSION }} pandoc --version