Skip to content

Commit

Permalink
CI build testing
Browse files Browse the repository at this point in the history
  - image build 2, npm cache for qemu npm install stability
  - ci-repo concurrency

Signed-off-by: Scott J Dickerson <[email protected]>
  • Loading branch information
sjd78 committed Aug 7, 2024
1 parent 78a497b commit de22eb3
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 19 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ on:

workflow_call:

concurrency:
group: ci-repo-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true

jobs:
unit-test-lookup-image:
runs-on: ubuntu-latest
Expand Down
50 changes: 31 additions & 19 deletions .github/workflows/image-build-2.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Multiple Architecture Image Build 2
name: Image Build 2

on:
workflow_dispatch:
Expand All @@ -14,12 +14,16 @@ concurrency:
cancel-in-progress: true

env:
tag: ${{ github.ref == 'refs/heads/main' && 'latest' || github.ref_name }}
tag: ${{ github.ref == 'refs/heads/main' && 'latest1' || github.ref_name }}

# what is normally sent in as input
registry: "quay.io/sdickers"
image_name: "tackle2-ui"
containerfile: "./Dockerfile"
context: "."

architectures: '[ "amd64", "arm64" ]'

extra-args: "--ulimit nofile=4096:4096"

# pre_build_cmd: |
Expand All @@ -32,19 +36,21 @@ jobs:
runs-on: ubuntu-latest

# setup a npm mirror server so multiple npm installs can share fetches
# services:
# npm-mirror:
# image: verdaccio/verdaccio:5
# ports:
# - 4873:4873
services:
npm-mirror:
image: verdaccio/verdaccio:5
ports:
- 4873:4873

strategy:
matrix:
architecture:
- "amd64"
- "arm64"
- "ppc64le"
- "s390x"
architecture: # can't use `env` here.. ${{ fromJson(env.architectures) }}
- amd64
- arm64

# concurrency:
# group: image-build-2-${{ github.ref }}-${{ matrix.architecture }}
# cancel-in-progress: true

steps:
- name: Maximize disk space
Expand All @@ -60,12 +66,17 @@ jobs:
df . -h
- name: Checkout
uses: actions/checkout@main
uses: actions/checkout@v4

- name: Configure QEMU
- name: Proxy npm registry to the "npm-mirror" service
run: |
echo "registry=\"http://npm-mirror:4873\"" >> .npmrc
- name: Setup QEMU to be able to build on ${{ matrix.architecture }}
if: ${{ matrix.architecture != 'amd64' }}
uses: docker/setup-qemu-action@master
with:
platforms: all
platforms: ${{ matrix.architecture }}

- name: Image meta
id: meta
Expand All @@ -81,10 +92,10 @@ jobs:
type=ref,event=pr
type=sha
- name: Run pre build command
shell: bash
run: "${{ env.pre_build_cmd }}"
if: "${{ env.pre_build_cmd != '' }}"
# - name: Run pre build command
# shell: bash
# run: "${{ env.pre_build_cmd }}"
# if: "${{ env.pre_build_cmd != '' }}"

- name: Build Image
id: build
Expand All @@ -96,6 +107,7 @@ jobs:
archs: ${{ matrix.architecture }}
labels: ${{ steps.meta.outputs.labels }}
containerfiles: ${{ env.containerfile }}
context: ${{ env.context }}

- name: Push To Quay
uses: redhat-actions/push-to-registry@main
Expand Down

0 comments on commit de22eb3

Please sign in to comment.