-
Notifications
You must be signed in to change notification settings - Fork 1
92 lines (79 loc) · 2.37 KB
/
solr.yml
File metadata and controls
92 lines (79 loc) · 2.37 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: 'Build solr docker image'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
schedule:
- cron: 0 7 * * THU
push:
branches:
- main
paths:
- solr/**
pull_request:
branches:
- main
paths:
- solr/**
workflow_dispatch:
inputs: {}
jobs:
version-matrix:
name: 'Generate version-matrix'
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.version-matrix.outputs.matrix }}
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: ./.github/action/endoflife
id: version-matrix
with:
product: 'solr'
- name: Show matrix output
run: echo '${{ steps.version-matrix.outputs.matrix }}'
build-docker-image:
name: 'Build solr-${{ matrix.image.name }} docker image'
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 10
matrix:
image: ${{ fromJson(needs.version-matrix.outputs.matrix) }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: find Dockerfile
uses: ./.github/action/dockerfile-finder
id: dockerfile
with:
path: ./solr
version: ${{ matrix.image.version }}
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
- name: Setup Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Login to GHCR
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push (solr)
uses: docker/build-push-action@v6
with:
builder: ${{ steps.buildx.outputs.name }}
context: ./solr
target: solr
file: ./solr/${{ step.dockerfile.outputs.dockerfile }}
push: ${{ github.event_name != 'pull_request' }}
tags: |
ghcr.io/netlogix/docker/solr:${{ matrix.image.name }}
ghcr.io/netlogix/docker/solr:${{ matrix.image.version }}
build-args: |
SOLR_VERSION=${{ matrix.image.version }}
platforms: linux/amd64,linux/arm64
cache-from: type=gha, scope=${{ github.workflow }}-solr
cache-to: type=gha, scope=${{ github.workflow }}-solr, mode=max