-
Notifications
You must be signed in to change notification settings - Fork 1
149 lines (126 loc) · 5.07 KB
/
pingvin-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
name: Pingvin CI
on:
push:
branches: [main]
tags: ["v*.*.*"]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
id-token: write
contents: read
env:
imageBaseName: ghcr.io/gadgetron/pingvin/ubuntu22.04
defaults:
run:
# See https://github.com/marketplace/actions/setup-miniconda#important
shell: bash -el {0}
jobs:
build-and-test:
runs-on: ["self-hosted", "1ES.Pool=biomedsigproc-pingvin-NC6s_v3"]
strategy:
matrix:
flavor: [cuda, nocuda]
steps:
- name: checkout
uses: actions/[email protected]
- name: Check GPU availability
run: docker run --rm --gpus=all ghcr.io/gadgetron/gadgetron/cuda:12.3.0-base-ubuntu22.04 nvidia-smi
- name: Build Docker images
run: ./docker/build-images.sh --type dev --type build --type rt --flavor ${{matrix.flavor}} --base-name "${{env.imageBaseName}}"
- name: Unit Test
run: |-
image_name="${{env.imageBaseName}}_build_${{matrix.flavor}}"
test_command=". /opt/conda/etc/profile.d/conda.sh \
&& conda activate pingvin \
&& /opt/code/pingvin/build/test/test_all"
docker run --rm --gpus=all "${image_name}" /bin/bash -c "$test_command"
- name: End-to-End Test
run: |-
image_name="${{env.imageBaseName}}_rt_${{matrix.flavor}}"
# Check Pingvin entrypoint
docker run --rm -i --gpus=all "${image_name}" --info
# Test Pingvin end-to-end
test_command=". /opt/conda/etc/profile.d/conda.sh \
&& conda activate pingvin \
&& cd /opt/e2e-test/ \
&& pytest --download-all --echo-log-on-failure"
docker run --rm --gpus=all --entrypoint /bin/bash "${image_name}" -c "$test_command"
publish-docker-images:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
needs: [build-and-test]
runs-on: ["self-hosted", "1ES.Pool=biomedsigproc-pingvin-NC6s_v3"]
strategy:
matrix:
flavor: [cuda, nocuda]
permissions:
packages: write
steps:
- name: checkout
uses: actions/[email protected]
- name: Log into ghcr.io
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Publish Docker images
run: |-
PINGVIN_VERSION_MAJOR=$(grep -Po '(?<=set\(PINGVIN_VERSION_MAJOR )([^\)]+)' CMakeLists.txt)
PINGVIN_VERSION_MINOR=$(grep -Po '(?<=set\(PINGVIN_VERSION_MINOR )([^\)]+)' CMakeLists.txt)
PINGVIN_VERSION_PATCH=$(grep -Po '(?<=set\(PINGVIN_VERSION_PATCH )([^\)]+)' CMakeLists.txt)
PINGVIN_VERSION="${PINGVIN_VERSION_MAJOR}.${PINGVIN_VERSION_MINOR}.${PINGVIN_VERSION_PATCH}"
./docker/build-images.sh --type dev --type rt --flavor ${{matrix.flavor}} --base-name "${{env.imageBaseName}}" --tag "${PINGVIN_VERSION}" --push
./docker/build-images.sh --type dev --type rt --flavor ${{matrix.flavor}} --base-name "${{env.imageBaseName}}" --tag latest --push
build-conda-package:
runs-on: ["self-hosted", "1ES.Pool=biomedsigproc-pingvin-NC6s_v3"]
steps:
- name: checkout
uses: actions/[email protected]
- name: Install Yardl
run: |-
YARDL_VERSION=$(grep -Po '(?<=YARDL_VERSION=)(.+)' Dockerfile)
mkdir -p "/tmp/yardl_${YARDL_VERSION}_linux_x86_64"
cd "/tmp/yardl_${YARDL_VERSION}_linux_x86_64"
wget --quiet "https://github.com/microsoft/yardl/releases/download/v${YARDL_VERSION}/yardl_${YARDL_VERSION}_linux_x86_64.tar.gz"
tar -xzf "yardl_${YARDL_VERSION}_linux_x86_64.tar.gz"
pwd >> $GITHUB_PATH
- name: Setup Miniforge
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
environment-file: conda/environment.yml
activate-environment: pingvin-build
- name: Build conda package
run: ./conda/package.sh
- name: Upload Conda package
uses: actions/upload-artifact@v4
with:
name: conda-packages
path: conda/build_pkg/**/pingvin*.tar.bz2
publish-conda-package:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
needs: [build-conda-package]
runs-on: ["self-hosted", "1ES.Pool=biomedsigproc-pingvin-NC6s_v3"]
steps:
- name: checkout
uses: actions/[email protected]
- name: Setup Miniforge
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
environment-file: conda/environment.yml
activate-environment: pingvin-build
- name: Download Conda package
uses: actions/download-artifact@v4
with:
name: conda-packages
path: conda/build_pkg/
- name: Publish conda package
env:
ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
run: |
for p in $(find conda/build_pkg -name pingvin*.tar.bz2)
do
./conda/publish_package.sh -u gadgetron -t "$ANACONDA_TOKEN" -p "$p"
done