1
+ # Copyright (C) 2022-2023 C-PAC Developers
2
+
3
+ # This file is part of C-PAC.
4
+
5
+ # C-PAC is free software: you can redistribute it and/or modify it under
6
+ # the terms of the GNU Lesser General Public License as published by the
7
+ # Free Software Foundation, either version 3 of the License, or (at your
8
+ # option) any later version.
9
+
10
+ # C-PAC is distributed in the hope that it will be useful, but WITHOUT
11
+ # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
13
+ # License for more details.
14
+
15
+ # You should have received a copy of the GNU Lesser General Public
16
+ # License along with C-PAC. If not, see <https://www.gnu.org/licenses/>.
1
17
name : Build and test C-PAC
2
18
3
19
on :
4
- workflow_dispatch :
20
+ workflow_call :
5
21
6
22
jobs :
7
- update-check :
8
- name : Update GitHub check
9
- runs-on : ubuntu-latest
10
- steps :
11
- - name : Update check's target URL
12
-
13
- with :
14
- authToken : ${{ secrets.ACTIONS_WORKFLOW_TOKEN }}
15
- context : " Build C-PAC images"
16
- state : pending
17
- target_url : ${{ github.server_url }}/${{ github.repository}}/actions/runs/${{ github.run_id }}
18
-
19
23
C-PAC :
20
- needs : update-check
21
24
uses : ./.github/workflows/build_C-PAC.yml
22
25
with :
23
26
variant : ' '
@@ -29,13 +32,11 @@ jobs:
29
32
variant : lite
30
33
31
34
C-PAC-ABCD-HCP :
32
- needs : update-check
33
35
uses : ./.github/workflows/build_C-PAC.yml
34
36
with :
35
37
variant : ABCD-HCP
36
38
37
39
C-PAC-fMRIPrep-LTS :
38
- needs : update-check
39
40
uses : ./.github/workflows/build_C-PAC.yml
40
41
with :
41
42
variant : fMRIPrep-LTS
@@ -51,14 +52,14 @@ jobs:
51
52
if : github.ref_name == 'develop' || github.ref_name == 'main'
52
53
steps :
53
54
- name : Check out C-PAC
54
- uses : actions/checkout@v2
55
+ uses : actions/checkout@v3
55
56
with :
56
57
fetch-depth : 2
57
58
- name : Participant-level smoke tests
58
59
run : gh workflow run smoke_test_participant.yml --ref ${GITHUB_REF_NAME}
59
60
env :
60
61
GITHUB_TOKEN : ${{ secrets.ACTIONS_WORKFLOW_TOKEN }}
61
-
62
+
62
63
regtest-lite :
63
64
name : Run lite regression test
64
65
needs :
71
72
- smoke-tests-participant
72
73
uses : ./.github/workflows/regression_test.yml
73
74
74
- finish-build-check :
75
- name : Finish GitHub check
76
- needs :
77
- - C-PAC
78
- - C-PAC-lite
79
- - C-PAC-ABCD-HCP
80
- - C-PAC-fMRIPrep-LTS
81
- if : always()
82
- runs-on : ubuntu-latest
83
- steps :
84
- - name : Update check status
85
- run : |
86
- result_failure="\"result\": \"failure\""
87
- result_cancelled="\"result\": \"cancelled\""
88
- export STATUS=failure
89
- if [[ $NEEDS_CONTEXT != *$result_failure* && $NEEDS_CONTEXT != *$result_cancelled* ]]
90
- then export STATUS=success
91
- fi
92
- echo "STATUS=$STATUS" >> $GITHUB_ENV
93
- - name : Finish check
94
-
95
- with :
96
- authToken : ${{ secrets.ACTIONS_WORKFLOW_TOKEN }}
97
- context : " Build C-PAC images"
98
- state : ${{ env.STATUS }}
99
- target_url : ${{ github.server_url }}/${{ github.repository}}/actions/runs/${{ github.run_id }}
100
-
101
75
Circle_tests :
102
76
name : Run tests on CircleCI
103
77
needs :
109
83
runs-on : ubuntu-latest
110
84
steps :
111
85
- name : Check out C-PAC
112
- uses : actions/checkout@v2
86
+ uses : actions/checkout@v3
113
87
with :
114
88
fetch-depth : 2
115
89
- name : Trigger CircleCI tests
@@ -120,12 +94,14 @@ jobs:
120
94
export DATA="{\"branch\":\"$GITHUB_REF_NAME\", \"parameters\": {\"run_tests\": true}}"
121
95
echo "URL ${U1}"
122
96
echo "data ${DATA}"
123
- PIPELINE_NUMBER =$(curl \
97
+ RESPONSE =$(curl \
124
98
--request POST \
125
99
--url "${U1}" \
126
100
-u ${{ secrets.CIRCLE_API_USER_TOKEN }}: \
127
101
--header 'content-type: application/json' \
128
- --data "${DATA}" |
102
+ --data "${DATA}")
103
+ echo "$RESPONSE"
104
+ PIPELINE_NUMBER=$(echo $RESPONSE |
129
105
jq '.number')
130
106
if [[ $PIPELINE_NUMBER == 'null' ]]
131
107
then
@@ -149,6 +125,7 @@ jobs:
149
125
echo ${TEXT}https://app.circleci.com/pipelines/github/${GITHUB_REPOSITORY}/${PIPELINE_NUMBER}/workflows/${WORKFLOW_ID}
150
126
151
127
Deploy_to_Docker_Hub :
128
+ name : Deploy to Docker Hub
152
129
needs :
153
130
- C-PAC
154
131
if : github.ref_type == 'tag'
@@ -158,6 +135,7 @@ jobs:
158
135
secrets : inherit
159
136
160
137
Deploy_to_Docker_Hub-lite :
138
+ name : Deploy 'lite' to Docker Hub
161
139
needs :
162
140
- C-PAC-lite
163
141
if : github.ref_type == 'tag'
@@ -167,6 +145,7 @@ jobs:
167
145
secrets : inherit
168
146
169
147
Deploy_to_Docker_Hub-ABCD-HCP :
148
+ name : Deploy 'ABCD-HCP' to Docker Hub
170
149
needs :
171
150
- C-PAC-ABCD-HCP
172
151
if : github.ref_type == 'tag'
@@ -176,6 +155,7 @@ jobs:
176
155
secrets : inherit
177
156
178
157
Deploy_to_Docker_Hub-fMRIPrep-LTS :
158
+ name : Deploy 'fMRIPrep-LTS' to Docker Hub
179
159
needs :
180
160
- C-PAC-fMRIPrep-LTS
181
161
if : github.ref_type == 'tag'
0 commit comments