forked from JCSDA/saber
-
Notifications
You must be signed in to change notification settings - Fork 1
183 lines (162 loc) · 6.09 KB
/
ci.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
---
name: UKMO Integration Test
on:
pull_request:
branches: [develop]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/develop' }}
env:
REPO: ${{ github.event.repository.name }}
PR: pr-${{ github.event.number }}
jobs:
build-and-test:
if: |
( github.repository_owner == 'JCSDA-internal' && github.event.pull_request.draft == false )
name: gnu-openmpi
runs-on: jedi-self-hosted-ext
steps:
- name: Pre-submit cleanup
run: |
rm -fr ./${{ env.PR }} || true
ls -lgo ./
- name: Checkout ${{ env.REPO }}
uses: actions/checkout@v4
with:
path: ./${{ env.PR }}/${{ env.REPO }}
lfs: true
- name: Initiate bundle
working-directory: ${{ env.PR }}
run: ln -sf ./${{ env.REPO }}/CI/meto/* .
- name: Checkout jedicmake
uses: actions/checkout@v4
with:
path: ./${{ env.PR }}/jedicmake
repository: JCSDA-internal/jedi-cmake
submodules: recursive
token: ${{ secrets.GH_PAT }}
- name: Checkout oops
uses: actions/checkout@v4
with:
path: ./${{ env.PR }}/oops
repository: JCSDA-internal/oops
token: ${{ secrets.GH_PAT }}
- name: Check build-group for oops
if: github.event_name == 'pull_request'
run: ./${{ env.PR }}/check-build-group.sh ./${{ env.PR }}/oops
- name: Checkout vader
uses: actions/checkout@v4
with:
path: ./${{ env.PR }}/vader
repository: JCSDA-internal/vader
token: ${{ secrets.GH_PAT }}
lfs: true
- name: Check build-group for vader
if: github.event_name == 'pull_request'
run: ./${{ env.PR }}/check-build-group.sh ./${{ env.PR }}/vader
- name: Checkout ufo
uses: actions/checkout@v4
with:
path: ./${{ env.PR }}/ufo
repository: JCSDA-internal/ufo
token: ${{ secrets.GH_PAT }}
- name: Check build-group for ufo
if: github.event_name == 'pull_request'
run: ./${{ env.PR }}/check-build-group.sh ./${{ env.PR }}/ufo
- name: Checkout ioda
uses: actions/checkout@v4
with:
path: ./${{ env.PR }}/ioda
repository: JCSDA-internal/ioda
token: ${{ secrets.GH_PAT }}
- name: Check build-group for ioda
if: github.event_name == 'pull_request'
run: ./${{ env.PR }}/check-build-group.sh ./${{ env.PR }}/ioda
- name: Checkout monio
uses: actions/checkout@v4
with:
path: ./${{ env.PR }}/monio
repository: MetOffice/monio
token: ${{ secrets.GH_PAT }}
- name: Check build-group for monio
if: github.event_name == 'pull_request'
run: ./${{ env.PR }}/check-build-group.sh ./${{ env.PR }}/monio
- name: Checkout opsinputs
uses: actions/checkout@v4
with:
path: ./${{ env.PR }}/opsinputs
repository: MetOffice/opsinputs
token: ${{ secrets.GH_PAT }}
- name: Check build-group for opsinputs
if: github.event_name == 'pull_request'
run: ./${{ env.PR }}/check-build-group.sh ./${{ env.PR }}/opsinputs
- name: Checkout nemo-feedback
uses: actions/checkout@v4
with:
path: ./${{ env.PR }}/nemo-feedback
repository: MetOffice/nemo-feedback
token: ${{ secrets.GH_PAT }}
- name: Check build-group for nemo-feedback
if: github.event_name == 'pull_request'
run: ./${{ env.PR }}/check-build-group.sh ./${{ env.PR }}/nemo-feedback
- name: Checkout orca-jedi
uses: actions/checkout@v4
with:
path: ./${{ env.PR }}/orca-jedi
repository: MetOffice/orca-jedi
token: ${{ secrets.GH_PAT }}
lfs: true
- name: Check build-group for orca-jedi
if: github.event_name == 'pull_request'
run: ./${{ env.PR }}/check-build-group.sh ./${{ env.PR }}/orca-jedi
- name: Checkout jjtests
uses: actions/checkout@v4
with:
path: ./${{ env.PR }}/jjtests
repository: MetOffice/jjtests
token: ${{ secrets.GH_PAT }}
- name: Check build-group for jjtests
if: github.event_name == 'pull_request'
run: ./${{ env.PR }}/check-build-group.sh ./${{ env.PR }}/jjtests
- name: Checkout ops-um-jedi
uses: actions/checkout@v4
with:
path: ./${{ env.PR }}/ops-um-jedi
repository: JCSDA-internal/ops-um-jedi
token: ${{ secrets.GH_PAT }}
- name: Check build-group for ops-um-jedi
if: github.event_name == 'pull_request'
run: ./${{ env.PR }}/check-build-group.sh ./${{ env.PR }}/ops-um-jedi
- name: Checkout lfric-jedi
uses: actions/checkout@v4
with:
path: ./${{ env.PR }}/lfric-jedi
repository: JCSDA-internal/lfric-jedi
token: ${{ secrets.GH_PAT }}
- name: Check build-group for lfric-jedi
if: github.event_name == 'pull_request'
run: ./${{ env.PR }}/check-build-group.sh ./${{ env.PR }}/lfric-jedi
- name: Build and Test
env:
# Container environment
WORKDIR: /var/tmp/${{ env.REPO }}/${{ env.PR }}
MOBB_DATA: /var/tmp/mobb-data
shell: bash
run: |
az acr login --name ngmssboxjediacr
ln -sf /testdata/mobb-data -t ${{ github.workspace }}
docker run --rm \
--name ${REPO}_${PR}_${GITHUB_SHA::7} \
--volume ${{ github.workspace }}/${PR}:${WORKDIR} \
--volume ${{ github.workspace }}/mobb-data:${MOBB_DATA} \
--env OMPI_ALLOW_RUN_AS_ROOT=1 \
--env OMPI_ALLOW_RUN_AS_ROOT_CONFIRM=1 \
--env MOBB_DATA=${MOBB_DATA} \
--env ATLAS_DATA_PATH=${MOBB_DATA} \
--env LFRICJEDI_TEST_TIER=0 \
--workdir=${WORKDIR} \
--entrypoint=${WORKDIR}/build-and-test.sh \
'ngmssboxjediacr.azurecr.io/jedibase:alma9'
- name: Cleanup workspace
working-directory: ${{github.workspace}}
run: rm -fr ${{ env.PR }} || true