Skip to content

Commit 9ed5164

Browse files
authored
Merge pull request #1917 from FCP-INDI/CI/no_dispatches
👷 `workflow_dispatch` → `workflow_call`
2 parents 06007a7 + 7a8b703 commit 9ed5164

9 files changed

+411
-302
lines changed
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FSL.data
2+
Ubuntu.bionic-non-free
3+
Ubuntu.Python3.10-bionic-non-free
4+
Ubuntu.xenial-20200114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
standard
2+
ABCD-HCP
3+
fMRIPrep-LTS
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
AFNI.16.2.07.neurodocker-xenial
2+
AFNI.21.1.00-bionic
3+
AFNI.23.0.07-bionic
4+
ANTs.2.2.0.neurodocker-bionic
5+
c3d.1.0.0-xenial
6+
connectome-workbench.1.3.2-1.neurodebian-bionic
7+
connectome-workbench.1.3.2-2.neurodebian-xenial
8+
connectome-workbench.1.5.0.neurodebian-bionic
9+
FSL.5.0.9-5.neurodebian-xenial
10+
FSL.5.0.10-bionic
11+
FSL.6.0.6.4-Python3.10-bionic
12+
ICA-AROMA.0.4.5-xenial
13+
msm.2.0-bionic

.github/workflows/build_C-PAC.yml

+1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ jobs:
9696
with:
9797
context: .
9898
file: ${{ env.DOCKERFILE }}
99+
provenance: false
99100
push: true
100101
tags: |
101102
${{ env.DOCKER_TAG }}

.github/workflows/build_and_test.yml

+28-48
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
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/>.
117
name: Build and test C-PAC
218

319
on:
4-
workflow_dispatch:
20+
workflow_call:
521

622
jobs:
7-
update-check:
8-
name: Update GitHub check
9-
runs-on: ubuntu-latest
10-
steps:
11-
- name: Update check's target URL
12-
uses: Sibz/[email protected]
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-
1923
C-PAC:
20-
needs: update-check
2124
uses: ./.github/workflows/build_C-PAC.yml
2225
with:
2326
variant: ''
@@ -29,13 +32,11 @@ jobs:
2932
variant: lite
3033

3134
C-PAC-ABCD-HCP:
32-
needs: update-check
3335
uses: ./.github/workflows/build_C-PAC.yml
3436
with:
3537
variant: ABCD-HCP
3638

3739
C-PAC-fMRIPrep-LTS:
38-
needs: update-check
3940
uses: ./.github/workflows/build_C-PAC.yml
4041
with:
4142
variant: fMRIPrep-LTS
@@ -51,14 +52,14 @@ jobs:
5152
if: github.ref_name == 'develop' || github.ref_name == 'main'
5253
steps:
5354
- name: Check out C-PAC
54-
uses: actions/checkout@v2
55+
uses: actions/checkout@v3
5556
with:
5657
fetch-depth: 2
5758
- name: Participant-level smoke tests
5859
run: gh workflow run smoke_test_participant.yml --ref ${GITHUB_REF_NAME}
5960
env:
6061
GITHUB_TOKEN: ${{ secrets.ACTIONS_WORKFLOW_TOKEN }}
61-
62+
6263
regtest-lite:
6364
name: Run lite regression test
6465
needs:
@@ -71,33 +72,6 @@ jobs:
7172
- smoke-tests-participant
7273
uses: ./.github/workflows/regression_test.yml
7374

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-
uses: Sibz/[email protected]
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-
10175
Circle_tests:
10276
name: Run tests on CircleCI
10377
needs:
@@ -109,7 +83,7 @@ jobs:
10983
runs-on: ubuntu-latest
11084
steps:
11185
- name: Check out C-PAC
112-
uses: actions/checkout@v2
86+
uses: actions/checkout@v3
11387
with:
11488
fetch-depth: 2
11589
- name: Trigger CircleCI tests
@@ -120,12 +94,14 @@ jobs:
12094
export DATA="{\"branch\":\"$GITHUB_REF_NAME\", \"parameters\": {\"run_tests\": true}}"
12195
echo "URL ${U1}"
12296
echo "data ${DATA}"
123-
PIPELINE_NUMBER=$(curl \
97+
RESPONSE=$(curl \
12498
--request POST \
12599
--url "${U1}" \
126100
-u ${{ secrets.CIRCLE_API_USER_TOKEN }}: \
127101
--header 'content-type: application/json' \
128-
--data "${DATA}" |
102+
--data "${DATA}")
103+
echo "$RESPONSE"
104+
PIPELINE_NUMBER=$(echo $RESPONSE |
129105
jq '.number')
130106
if [[ $PIPELINE_NUMBER == 'null' ]]
131107
then
@@ -149,6 +125,7 @@ jobs:
149125
echo ${TEXT}https://app.circleci.com/pipelines/github/${GITHUB_REPOSITORY}/${PIPELINE_NUMBER}/workflows/${WORKFLOW_ID}
150126
151127
Deploy_to_Docker_Hub:
128+
name: Deploy to Docker Hub
152129
needs:
153130
- C-PAC
154131
if: github.ref_type == 'tag'
@@ -158,6 +135,7 @@ jobs:
158135
secrets: inherit
159136

160137
Deploy_to_Docker_Hub-lite:
138+
name: Deploy 'lite' to Docker Hub
161139
needs:
162140
- C-PAC-lite
163141
if: github.ref_type == 'tag'
@@ -167,6 +145,7 @@ jobs:
167145
secrets: inherit
168146

169147
Deploy_to_Docker_Hub-ABCD-HCP:
148+
name: Deploy 'ABCD-HCP' to Docker Hub
170149
needs:
171150
- C-PAC-ABCD-HCP
172151
if: github.ref_type == 'tag'
@@ -176,6 +155,7 @@ jobs:
176155
secrets: inherit
177156

178157
Deploy_to_Docker_Hub-fMRIPrep-LTS:
158+
name: Deploy 'fMRIPrep-LTS' to Docker Hub
179159
needs:
180160
- C-PAC-fMRIPrep-LTS
181161
if: github.ref_type == 'tag'

0 commit comments

Comments
 (0)