1
- <<<<<<< HEAD
2
- name : hdf5 dev daily build
3
-
4
- # Triggers the workflow on a schedule or on demand
5
- on :
6
- workflow_dispatch :
7
- schedule :
8
- - cron : " 6 0 * * *"
9
- =======
10
1
name : hdf5 1.14 daily build
11
2
12
3
# Triggers the workflow on demand or on a call from another workflow
26
17
type : string
27
18
required : false
28
19
default : check
29
- >>>>>>> 7bf340440909d468dbb3cf41f0ea0d87f5050cea
30
20
31
21
permissions :
32
22
contents : read
@@ -36,42 +26,24 @@ jobs:
36
26
runs-on : ubuntu-latest
37
27
outputs :
38
28
hdf5-name : ${{ steps.gethdf5base.outputs.HDF5_NAME_BASE }}
39
- <<<<<<< HEAD
40
- =======
41
29
run-ignore : ${{ steps.getinputs.outputs.INPUTS_IGNORE }}
42
- >>>>>>> 7bf340440909d468dbb3cf41f0ea0d87f5050cea
43
30
44
31
steps :
45
32
46
33
47
34
- name : Get hdf5 release base name
48
35
uses : dsaltares/fetch-gh-release-asset@master
49
36
with :
50
- <<<<<<< HEAD
51
- version : ' tags/snapshot'
52
- file : ' last-file.txt'
53
- =======
54
37
version : ' tags/snapshot-1.14'
55
38
file : ' last-file.txt'
56
39
continue-on-error : true
57
- >>>>>>> 7bf340440909d468dbb3cf41f0ea0d87f5050cea
58
40
59
41
- name : Read base-name file
60
42
id : gethdf5base
61
43
run : echo "HDF5_NAME_BASE=$(cat last-file.txt)" >> $GITHUB_OUTPUT
62
44
63
45
- run : echo "hdf5 base name is ${{ steps.gethdf5base.outputs.HDF5_NAME_BASE }}."
64
46
65
- <<<<<<< HEAD
66
- call-workflow-tarball :
67
- uses : ./.github/workflows/tarball.yml
68
- with :
69
- use_tag : snapshot
70
- use_environ : snapshots
71
-
72
- call-workflow-ctest :
73
- needs : call-workflow-tarball
74
- =======
75
47
- name : Read inputs
76
48
id : getinputs
77
49
run : |
@@ -132,53 +104,33 @@ jobs:
132
104
133
105
call-workflow-ctest :
134
106
needs : [get-old-names, call-workflow-tarball]
135
- >>>>>>> 7bf340440909d468dbb3cf41f0ea0d87f5050cea
136
107
uses : ./.github/workflows/cmake-ctest.yml
137
108
with :
138
109
preset_name : ci-StdShar
139
110
file_base : ${{ needs.call-workflow-tarball.outputs.file_base }}
140
- <<<<<<< HEAD
141
- # use_tag: snapshot
142
- use_environ : snapshots
143
- secrets :
144
- =======
145
111
# use_tag: snapshot-1.14
146
112
use_environ : snapshots
147
113
secrets :
148
114
APPLE_CERTS_BASE64 : ${{ secrets.APPLE_CERTS_BASE64 }}
149
115
APPLE_CERTS_BASE64_PASSWD : ${{ secrets.APPLE_CERTS_BASE64_PASSWD }}
150
116
KEYCHAIN_PASSWD : ${{ secrets.KEYCHAIN_PASSWD }}
151
- >>>>>>> 7bf340440909d468dbb3cf41f0ea0d87f5050cea
152
117
AZURE_TENANT_ID : ${{ secrets.AZURE_TENANT_ID }}
153
118
AZURE_CLIENT_ID : ${{ secrets.AZURE_CLIENT_ID }}
154
119
AZURE_CLIENT_SECRET : ${{ secrets.AZURE_CLIENT_SECRET }}
155
120
AZURE_ENDPOINT : ${{ secrets.AZURE_ENDPOINT }}
156
121
AZURE_CODE_SIGNING_NAME : ${{ secrets.AZURE_CODE_SIGNING_NAME }}
157
122
AZURE_CERT_PROFILE_NAME : ${{ secrets.AZURE_CERT_PROFILE_NAME }}
158
- <<<<<<< HEAD
159
- if : ${{ needs.call-workflow-tarball.outputs.has_changes == 'true' }}
160
-
161
- call-workflow-abi :
162
- needs : [call-workflow-tarball, call-workflow-ctest]
163
- =======
164
123
if : ${{ ((needs.call-workflow-tarball.outputs.has_changes == 'true') || (needs.get-old-names.outputs.run-ignore == 'ignore')) }}
165
124
166
125
call-workflow-abi :
167
126
needs : [get-old-names, call-workflow-tarball, call-workflow-ctest]
168
- >>>>>>> 7bf340440909d468dbb3cf41f0ea0d87f5050cea
169
127
uses : ./.github/workflows/abi-report.yml
170
128
with :
171
129
file_ref : ' 1.14.4.3'
172
130
file_base : ${{ needs.call-workflow-tarball.outputs.file_base }}
173
- <<<<<<< HEAD
174
- use_tag : snapshot
175
- use_environ : snapshots
176
- if : ${{ needs.call-workflow-tarball.outputs.has_changes == 'true' }}
177
- =======
178
131
use_tag : snapshot-1.14
179
132
use_environ : snapshots
180
133
if : ${{ ((needs.call-workflow-tarball.outputs.has_changes == 'true') || (needs.get-old-names.outputs.run-ignore == 'ignore')) }}
181
- >>>>>>> 7bf340440909d468dbb3cf41f0ea0d87f5050cea
182
134
183
135
call-workflow-release :
184
136
needs : [get-old-names, call-workflow-tarball, call-workflow-ctest, call-workflow-abi]
@@ -189,15 +141,9 @@ jobs:
189
141
file_base : ${{ needs.call-workflow-tarball.outputs.file_base }}
190
142
file_branch : ${{ needs.call-workflow-tarball.outputs.file_branch }}
191
143
file_sha : ${{ needs.call-workflow-tarball.outputs.file_sha }}
192
- <<<<<<< HEAD
193
- use_tag : snapshot
194
- use_environ : snapshots
195
- if : ${{ needs.call-workflow-tarball.outputs.has_changes == 'true' }}
196
- =======
197
144
use_tag : snapshot-1.14
198
145
use_environ : snapshots
199
146
if : ${{ ((needs.call-workflow-tarball.outputs.has_changes == 'true') || (needs.get-old-names.outputs.run-ignore == 'ignore')) }}
200
- >>>>>>> 7bf340440909d468dbb3cf41f0ea0d87f5050cea
201
147
202
148
call-workflow-remove :
203
149
needs : [get-old-names, call-workflow-tarball, call-workflow-ctest, call-workflow-abi, call-workflow-release]
@@ -206,13 +152,7 @@ jobs:
206
152
uses : ./.github/workflows/remove-files.yml
207
153
with :
208
154
file_base : ${{ needs.get-old-names.outputs.hdf5-name }}
209
- <<<<<<< HEAD
210
- use_tag : snapshot
211
- use_environ : snapshots
212
- if : ${{ (needs.call-workflow-tarball.outputs.has_changes == 'true') && (needs.get-old-names.outputs.hdf5-name != needs.call-workflow-tarball.outputs.file_base) }}
213
- =======
214
155
use_tag : snapshot-1.14
215
156
use_environ : snapshots
216
157
if : ${{ ((needs.call-workflow-tarball.outputs.has_changes == 'true') || (needs.get-old-names.outputs.run-ignore == 'ignore')) && (needs.get-old-names.outputs.hdf5-name != needs.call-workflow-tarball.outputs.file_base) }}
217
- >>>>>>> 7bf340440909d468dbb3cf41f0ea0d87f5050cea
218
158
0 commit comments