-
Notifications
You must be signed in to change notification settings - Fork 270
53 lines (44 loc) · 2.23 KB
/
ubi8-google-api-python-client-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
name: ubi8-google-api-python-client-pr
on:
pull_request:
paths:
- utilities/ubi8-google-api-python-client/**
- .github/workflows/ubi8-google-api-python-client-pr.yaml
# Declare default permissions as read only.
permissions: read-all
jobs:
build:
env:
context: utilities/ubi8-google-api-python-client
image_name: ubi8-google-api-python-client
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4
- name: Check and verify version.json
id: check_version
uses: redhat-cop/github-actions/get-image-version@e4729075dcd3f34946b80df6b1bfb952b9fee166 # v4
with:
IMAGE_CONTEXT_DIR: ${{ env.context }}
- uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf # v3.1.0
with:
dockerfile: ${{ env.context }}/Dockerfile
ignore: DL3041
- name: Build image
uses: redhat-actions/buildah-build@7a95fa7ee0f02d552a32753e7414641a04307056 # v2
with:
context: ${{ env.context }}
dockerfiles: |
./${{ env.context }}/Dockerfile
image: ${{ env.image_name }}
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 }} pip3 --version"
podman run ${image_name}:${{ steps.check_version.outputs.VERSION }} pip3 --version
echo "Running: podman run ${image_name}:${{ steps.check_version.outputs.VERSION }} pip3 show google-api-python-client google-auth-httplib2 google-auth-oauthlib"
podman run ${image_name}:${{ steps.check_version.outputs.VERSION }} pip3 show google-api-python-client google-auth-httplib2 google-auth-oauthlib
echo "Running: podman run ${image_name}:${{ steps.check_version.outputs.VERSION }} upload-file-to-google-drive --help"
podman run ${image_name}:${{ steps.check_version.outputs.VERSION }} upload-file-to-google-drive --help