-
Notifications
You must be signed in to change notification settings - Fork 4
61 lines (47 loc) · 1.91 KB
/
build_and_test.yml
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
name: Build, Run and Test Docker Image
on: [push]
jobs:
build-run-test:
runs-on: ubuntu-latest
strategy:
matrix:
images:
- artifact: alfresco-elasticsearch-live-indexing-metadata
version: 4.0.1
name: alfresco-enterprise-search-metadata
path: search/enterprise/metadata
extension: -app.jar
group: org.alfresco
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Setup .netrc
run: |
echo "machine nexus.alfresco.com" >> ~/.netrc
echo "login ${{ secrets.NEXUS_USERNAME }}" >> ~/.netrc
echo "password ${{ secrets.NEXUS_PASSWORD }}" >> ~/.netrc
- name: Fetch artifacts from nexus
run: bash ./scripts/fetch-artifact.sh ${{ matrix.images.artifact }} ${{ matrix.images.version }} ${{ matrix.images.extension }} ${{ matrix.images.group }} ${{ github.workspace }}/${{ matrix.images.path }}
working-directory: ${{ github.workspace }}
- name: Build Docker image
uses: docker/build-push-action@v6
with:
context: "{{defaultContext}}:${{ matrix.images.path }}"
tags: ${{ matrix.images.name }}:test
push: false
load: true
- name: Run Docker image
run: docker run -d -p 8080:8080 ${{ matrix.images.name }}:test
working-directory: ${{ github.workspace }}
- uses: Alfresco/alfresco-build-tools/.github/actions/[email protected]
- name: Check the status of container
run: docker ps -a