-
Notifications
You must be signed in to change notification settings - Fork 33
92 lines (74 loc) · 2.06 KB
/
_build_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
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
on:
workflow_call:
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-environment
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- run: ./nx lint
build:
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
imageName:
- wikibase
- elasticsearch
- wdqs
- wdqs-frontend
- wdqs-proxy
- quickstatements
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-environment
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push ${{ matrix.imageName }}
run: ./nx build ${{ matrix.imageName }} --push
test:
needs: build
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
suite:
- repo
- fedprops
- repo_client
- quickstatements
- pingback
- elasticsearch
- deploy
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-environment
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: "Pull images from GHCR"
uses: ./.github/actions/pull-ghcr
- name: "Run ${{ matrix.suite }} test suite"
run: ./nx test -- ${{ matrix.suite }}
- name: Show logs
run: |
ls -lahr test/suites/${{ matrix.suite }}/results test/suites/${{ matrix.suite }}/results/*
tail -n +1 test/suites/${{ matrix.suite }}/results/*.log
continue-on-error: true
- uses: actions/upload-artifact@v4
with:
name: dev-${{ github.run_id }}-${{ matrix.suite }}-test-results
path: test/suites/**/results
test-success:
# Post-test CI step - to check all tests succeeded
# Github Branch Protection rules require this to pass to allow merging
runs-on: ubuntu-latest
needs:
- lint
- test
steps:
- run: true