-
Notifications
You must be signed in to change notification settings - Fork 821
38 lines (29 loc) · 877 Bytes
/
docker-test.yml
File metadata and controls
38 lines (29 loc) · 877 Bytes
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
name: Docker Build & Test
on:
pull_request:
branches:
- '*'
paths:
- '.github/workflows/docker-test.yml'
- 'solr/bin/**'
- 'solr/docker/**'
- 'solr/packaging/**'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Build and test Docker image
runs-on: ubuntu-latest
timeout-minutes: 15
env:
SOLR_DOCKER_IMAGE_REPO: github-pr/solr
SOLR_DOCKER_IMAGE_TAG: ${{github.event.number}}
steps:
- name: Checkout code
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- uses: ./.github/actions/prepare-for-build
- name: Build Docker image with Gradle
run: ./gradlew solr:docker:docker
- name: Run tests on Docker image
run: ./gradlew solr:docker:testDocker