From dca2702f751196d114963e4b96580edbc65db73e Mon Sep 17 00:00:00 2001 From: Adrian Riobo Lorenzo Date: Mon, 3 Jun 2024 10:07:28 +0200 Subject: [PATCH] feat: oci image builder to be used as part of a multistage build strategy This image will act as a cache for the node modules requried to build the extension Signed-off-by: Adrian Riobo Lorenzo --- .github/workflows/build-builder.yaml | 52 ++++++++++++++++++++++++++++ oci/Containerfile.builder | 24 +++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 .github/workflows/build-builder.yaml create mode 100644 oci/Containerfile.builder diff --git a/.github/workflows/build-builder.yaml b/.github/workflows/build-builder.yaml new file mode 100644 index 0000000..7146ab4 --- /dev/null +++ b/.github/workflows/build-builder.yaml @@ -0,0 +1,52 @@ +# +# Copyright (C) 2024 Red Hat, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 + +name: build-builder + +on: + push: + branches: + - main + +jobs: + build-and-push-image: + runs-on: ubuntu-24.04 + permissions: + contents: read + packages: write + + steps: + - name: Checkout repository + uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 + + - name: Build Image + id: build-image + uses: redhat-actions/buildah-build@7a95fa7ee0f02d552a32753e7414641a04307056 #v2.17 + with: + image: ghcr.io/${{ github.repository }}-builder + tags: latest ${{ github.sha }} + containerfiles: | + ./oci/Containerfile.builder + + - name: Push To Registry + uses: redhat-actions/push-to-registry@5ed88d269cf581ea9ef6dd6806d01562096bee9c #v2.8 + with: + image: ${{ steps.build-image.outputs.image }} + tags: ${{ steps.build-image.outputs.tags }} + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} diff --git a/oci/Containerfile.builder b/oci/Containerfile.builder new file mode 100644 index 0000000..48aa6e0 --- /dev/null +++ b/oci/Containerfile.builder @@ -0,0 +1,24 @@ +# +# Copyright (C) 2024 Red Hat, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 + +FROM registry.access.redhat.com/ubi9/nodejs-20 + +COPY package.json . + +RUN npm install yarn --global \ + && yarn --frozen-lockfile --network-timeout 180000 + \ No newline at end of file