]> git.ipfire.org Git - thirdparty/git.git/blame - .github/workflows/main.yml
Merge branch 'ma/header-dup-cleanup'
[thirdparty/git.git] / .github / workflows / main.yml
CommitLineData
df7375d7 1name: CI
889cacb6
ĐTCD
2
3on: [push, pull_request]
4
5env:
6 DEVELOPER: 1
7
8jobs:
e76eec35 9 ci-config:
df7375d7 10 name: config
055747cd
AM
11 runs-on: ubuntu-latest
12 outputs:
7d78d5fc 13 enabled: ${{ steps.check-ref.outputs.enabled }}${{ steps.skip-if-redundant.outputs.enabled }}
055747cd
AM
14 steps:
15 - name: try to clone ci-config branch
055747cd
AM
16 run: |
17 git -c protocol.version=2 clone \
18 --no-tags \
19 --single-branch \
20 -b ci-config \
21 --depth 1 \
22 --no-checkout \
23 --filter=blob:none \
24 https://github.com/${{ github.repository }} \
25 config-repo &&
b01aff8c 26 cd config-repo &&
2fcf7a8c 27 git checkout HEAD -- ci/config || : ignore
055747cd
AM
28 - id: check-ref
29 name: check whether CI is enabled for ref
30 run: |
31 enabled=yes
32 if test -x config-repo/ci/config/allow-ref &&
33 ! config-repo/ci/config/allow-ref '${{ github.ref }}'
34 then
35 enabled=no
36 fi
37 echo "::set-output name=enabled::$enabled"
7d78d5fc
JS
38 - name: skip if the commit or tree was already tested
39 id: skip-if-redundant
40 uses: actions/github-script@v3
41 if: steps.check-ref.outputs.enabled == 'yes'
42 with:
43 github-token: ${{secrets.GITHUB_TOKEN}}
44 script: |
d6d66837
JS
45 try {
46 // Figure out workflow ID, commit and tree
47 const { data: run } = await github.actions.getWorkflowRun({
48 owner: context.repo.owner,
49 repo: context.repo.repo,
50 run_id: context.runId,
51 });
52 const workflow_id = run.workflow_id;
53 const head_sha = run.head_sha;
54 const tree_id = run.head_commit.tree_id;
7d78d5fc 55
d6d66837
JS
56 // See whether there is a successful run for that commit or tree
57 const { data: runs } = await github.actions.listWorkflowRuns({
58 owner: context.repo.owner,
59 repo: context.repo.repo,
60 per_page: 500,
61 status: 'success',
62 workflow_id,
63 });
64 for (const run of runs.workflow_runs) {
65 if (head_sha === run.head_sha) {
66 core.warning(`Successful run for the commit ${head_sha}: ${run.html_url}`);
67 core.setOutput('enabled', ' but skip');
68 break;
69 }
70 if (run.head_commit && tree_id === run.head_commit.tree_id) {
71 core.warning(`Successful run for the tree ${tree_id}: ${run.html_url}`);
72 core.setOutput('enabled', ' but skip');
73 break;
74 }
7d78d5fc 75 }
d6d66837
JS
76 } catch (e) {
77 core.warning(e);
7d78d5fc 78 }
e76eec35 79
889cacb6 80 windows-build:
df7375d7 81 name: win build
e76eec35
JK
82 needs: ci-config
83 if: needs.ci-config.outputs.enabled == 'yes'
889cacb6
ĐTCD
84 runs-on: windows-latest
85 steps:
0dc787a9 86 - uses: actions/checkout@v2
0eb6c189 87 - uses: git-for-windows/setup-git-for-windows-sdk@v1
889cacb6 88 - name: build
0eb6c189 89 shell: bash
889cacb6
ĐTCD
90 env:
91 HOME: ${{runner.workspace}}
889cacb6 92 NO_PERL: 1
7491ef61 93 run: . /etc/profile && ci/make-test-artifacts.sh artifacts
d681d0dc
JS
94 - name: zip up tracked files
95 run: git archive -o artifacts/tracked.tar.gz HEAD
96 - name: upload tracked files and build artifacts
e9f79acb 97 uses: actions/upload-artifact@v2
889cacb6
ĐTCD
98 with:
99 name: windows-artifacts
100 path: artifacts
101 windows-test:
df7375d7 102 name: win test
889cacb6
ĐTCD
103 runs-on: windows-latest
104 needs: [windows-build]
105 strategy:
2b0e14f6 106 fail-fast: false
889cacb6
ĐTCD
107 matrix:
108 nr: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
109 steps:
d681d0dc 110 - name: download tracked files and build artifacts
e9f79acb 111 uses: actions/download-artifact@v2
889cacb6
ĐTCD
112 with:
113 name: windows-artifacts
114 path: ${{github.workspace}}
d681d0dc 115 - name: extract tracked files and build artifacts
889cacb6 116 shell: bash
d681d0dc 117 run: tar xf artifacts.tar.gz && tar xf tracked.tar.gz
0eb6c189 118 - uses: git-for-windows/setup-git-for-windows-sdk@v1
889cacb6 119 - name: test
0eb6c189 120 shell: bash
7491ef61 121 run: . /etc/profile && ci/run-test-slice.sh ${{matrix.nr}} 10
889cacb6
ĐTCD
122 - name: ci/print-test-failures.sh
123 if: failure()
0eb6c189
JS
124 shell: bash
125 run: ci/print-test-failures.sh
f72f328b
JS
126 - name: Upload failed tests' directories
127 if: failure() && env.FAILED_TEST_ARTIFACTS != ''
e9f79acb 128 uses: actions/upload-artifact@v2
f72f328b
JS
129 with:
130 name: failed-tests-windows
131 path: ${{env.FAILED_TEST_ARTIFACTS}}
889cacb6 132 vs-build:
df7375d7 133 name: win+VS build
e76eec35
JK
134 needs: ci-config
135 if: needs.ci-config.outputs.enabled == 'yes'
889cacb6 136 env:
889cacb6
ĐTCD
137 NO_PERL: 1
138 GIT_CONFIG_PARAMETERS: "'user.name=CI' 'user.email=ci@git'"
139 runs-on: windows-latest
140 steps:
0dc787a9 141 - uses: actions/checkout@v2
0eb6c189 142 - uses: git-for-windows/setup-git-for-windows-sdk@v1
958a5f5d
DA
143 - name: initialize vcpkg
144 uses: actions/checkout@v2
145 with:
146 repository: 'microsoft/vcpkg'
147 path: 'compat/vcbuild/vcpkg'
889cacb6
ĐTCD
148 - name: download vcpkg artifacts
149 shell: powershell
150 run: |
151 $urlbase = "https://dev.azure.com/git/git/_apis/build/builds"
152 $id = ((Invoke-WebRequest -UseBasicParsing "${urlbase}?definitions=9&statusFilter=completed&resultFilter=succeeded&`$top=1").content | ConvertFrom-JSON).value[0].id
153 $downloadUrl = ((Invoke-WebRequest -UseBasicParsing "${urlbase}/$id/artifacts").content | ConvertFrom-JSON).value[0].resource.downloadUrl
154 (New-Object Net.WebClient).DownloadFile($downloadUrl, "compat.zip")
155 Expand-Archive compat.zip -DestinationPath . -Force
156 Remove-Item compat.zip
157 - name: add msbuild to PATH
17c13069 158 uses: microsoft/setup-msbuild@v1
4c2c38e8 159 - name: copy dlls to root
abb2b389
JS
160 shell: cmd
161 run: compat\vcbuild\vcpkg_copy_dlls.bat release
4c2c38e8
SS
162 - name: generate Visual Studio solution
163 shell: bash
164 run: |
165 cmake `pwd`/contrib/buildsystems/ -DCMAKE_PREFIX_PATH=`pwd`/compat/vcbuild/vcpkg/installed/x64-windows \
9ab0b661 166 -DNO_GETTEXT=YesPlease -DPERL_TESTS=OFF -DPYTHON_TESTS=OFF -DCURL_NO_CURL_CMAKE=ON
889cacb6
ĐTCD
167 - name: MSBuild
168 run: msbuild git.sln -property:Configuration=Release -property:Platform=x64 -maxCpuCount:4 -property:PlatformToolset=v142
169 - name: bundle artifact tar
0eb6c189 170 shell: bash
889cacb6
ĐTCD
171 env:
172 MSVC: 1
173 VCPKG_ROOT: ${{github.workspace}}\compat\vcbuild\vcpkg
174 run: |
0eb6c189 175 mkdir -p artifacts &&
9ab0b661 176 eval "$(make -n artifacts-tar INCLUDE_DLLS_IN_ARTIFACTS=YesPlease ARTIFACTS_DIRECTORY=artifacts NO_GETTEXT=YesPlease 2>&1 | grep ^tar)"
d681d0dc
JS
177 - name: zip up tracked files
178 run: git archive -o artifacts/tracked.tar.gz HEAD
179 - name: upload tracked files and build artifacts
e9f79acb 180 uses: actions/upload-artifact@v2
889cacb6
ĐTCD
181 with:
182 name: vs-artifacts
183 path: artifacts
184 vs-test:
df7375d7 185 name: win+VS test
889cacb6 186 runs-on: windows-latest
0eb6c189 187 needs: vs-build
889cacb6 188 strategy:
2b0e14f6 189 fail-fast: false
889cacb6
ĐTCD
190 matrix:
191 nr: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
192 steps:
0eb6c189 193 - uses: git-for-windows/setup-git-for-windows-sdk@v1
d681d0dc 194 - name: download tracked files and build artifacts
e9f79acb 195 uses: actions/download-artifact@v2
889cacb6
ĐTCD
196 with:
197 name: vs-artifacts
198 path: ${{github.workspace}}
d681d0dc 199 - name: extract tracked files and build artifacts
889cacb6 200 shell: bash
d681d0dc 201 run: tar xf artifacts.tar.gz && tar xf tracked.tar.gz
4c2c38e8 202 - name: test
0eb6c189 203 shell: bash
889cacb6 204 env:
889cacb6 205 NO_SVN_TESTS: 1
7491ef61 206 run: . /etc/profile && ci/run-test-slice.sh ${{matrix.nr}} 10
4c2c38e8
SS
207 - name: ci/print-test-failures.sh
208 if: failure()
0eb6c189
JS
209 shell: bash
210 run: ci/print-test-failures.sh
4c2c38e8
SS
211 - name: Upload failed tests' directories
212 if: failure() && env.FAILED_TEST_ARTIFACTS != ''
e9f79acb 213 uses: actions/upload-artifact@v2
4c2c38e8
SS
214 with:
215 name: failed-tests-windows
216 path: ${{env.FAILED_TEST_ARTIFACTS}}
889cacb6 217 regular:
df7375d7 218 name: ${{matrix.vector.jobname}} (${{matrix.vector.pool}})
e76eec35
JK
219 needs: ci-config
220 if: needs.ci-config.outputs.enabled == 'yes'
889cacb6 221 strategy:
2b0e14f6 222 fail-fast: false
889cacb6
ĐTCD
223 matrix:
224 vector:
225 - jobname: linux-clang
226 cc: clang
227 pool: ubuntu-latest
25715419
ÆAB
228 - jobname: linux-sha256
229 cc: clang
230 os: ubuntu
231 pool: ubuntu-latest
889cacb6
ĐTCD
232 - jobname: linux-gcc
233 cc: gcc
707d2f2f 234 cc_package: gcc-8
889cacb6 235 pool: ubuntu-latest
25715419
ÆAB
236 - jobname: linux-TEST-vars
237 cc: gcc
238 os: ubuntu
239 cc_package: gcc-8
889cacb6
ĐTCD
240 pool: ubuntu-latest
241 - jobname: osx-clang
242 cc: clang
243 pool: macos-latest
244 - jobname: osx-gcc
245 cc: gcc
707d2f2f 246 cc_package: gcc-9
889cacb6 247 pool: macos-latest
6c280b41 248 - jobname: linux-gcc-default
889cacb6
ĐTCD
249 cc: gcc
250 pool: ubuntu-latest
956d2e46
ÆAB
251 - jobname: linux-leaks
252 cc: gcc
253 pool: ubuntu-latest
889cacb6
ĐTCD
254 env:
255 CC: ${{matrix.vector.cc}}
707d2f2f 256 CC_PACKAGE: ${{matrix.vector.cc_package}}
889cacb6 257 jobname: ${{matrix.vector.jobname}}
707d2f2f 258 runs_on_pool: ${{matrix.vector.pool}}
889cacb6
ĐTCD
259 runs-on: ${{matrix.vector.pool}}
260 steps:
0dc787a9 261 - uses: actions/checkout@v2
889cacb6
ĐTCD
262 - run: ci/install-dependencies.sh
263 - run: ci/run-build-and-tests.sh
264 - run: ci/print-test-failures.sh
265 if: failure()
f72f328b
JS
266 - name: Upload failed tests' directories
267 if: failure() && env.FAILED_TEST_ARTIFACTS != ''
e9f79acb 268 uses: actions/upload-artifact@v2
f72f328b
JS
269 with:
270 name: failed-tests-${{matrix.vector.jobname}}
271 path: ${{env.FAILED_TEST_ARTIFACTS}}
889cacb6 272 dockerized:
df7375d7 273 name: ${{matrix.vector.jobname}} (${{matrix.vector.image}})
e76eec35
JK
274 needs: ci-config
275 if: needs.ci-config.outputs.enabled == 'yes'
889cacb6 276 strategy:
2b0e14f6 277 fail-fast: false
889cacb6
ĐTCD
278 matrix:
279 vector:
280 - jobname: linux-musl
281 image: alpine
c08bb260
ÆAB
282 - jobname: linux32
283 os: ubuntu32
889cacb6 284 image: daald/ubuntu32:xenial
cebead1e
CMAB
285 - jobname: pedantic
286 image: fedora
889cacb6
ĐTCD
287 env:
288 jobname: ${{matrix.vector.jobname}}
289 runs-on: ubuntu-latest
290 container: ${{matrix.vector.image}}
291 steps:
292 - uses: actions/checkout@v1
293 - run: ci/install-docker-dependencies.sh
294 - run: ci/run-build-and-tests.sh
295 - run: ci/print-test-failures.sh
296 if: failure()
f72f328b
JS
297 - name: Upload failed tests' directories
298 if: failure() && env.FAILED_TEST_ARTIFACTS != ''
3cf9bb36 299 uses: actions/upload-artifact@v1
f72f328b
JS
300 with:
301 name: failed-tests-${{matrix.vector.jobname}}
302 path: ${{env.FAILED_TEST_ARTIFACTS}}
889cacb6 303 static-analysis:
e76eec35
JK
304 needs: ci-config
305 if: needs.ci-config.outputs.enabled == 'yes'
889cacb6
ĐTCD
306 env:
307 jobname: StaticAnalysis
d051ed77 308 runs-on: ubuntu-18.04
889cacb6 309 steps:
0dc787a9 310 - uses: actions/checkout@v2
889cacb6
ĐTCD
311 - run: ci/install-dependencies.sh
312 - run: ci/run-static-analysis.sh
0e7696c6 313 - run: ci/check-directional-formatting.bash
e6105966
JS
314 sparse:
315 needs: ci-config
316 if: needs.ci-config.outputs.enabled == 'yes'
317 env:
318 jobname: sparse
319 runs-on: ubuntu-20.04
320 steps:
321 - name: Download a current `sparse` package
322 # Ubuntu's `sparse` version is too old for us
323 uses: git-for-windows/get-azure-pipelines-artifact@v0
324 with:
325 repository: git/git
326 definitionId: 10
327 artifact: sparse-20.04
328 - name: Install the current `sparse` package
329 run: sudo dpkg -i sparse-20.04/sparse_*.deb
e6105966 330 - uses: actions/checkout@v2
27f45ccf
JK
331 - name: Install other dependencies
332 run: ci/install-dependencies.sh
e6105966 333 - run: make sparse
889cacb6 334 documentation:
df7375d7 335 name: documentation
e76eec35
JK
336 needs: ci-config
337 if: needs.ci-config.outputs.enabled == 'yes'
889cacb6
ĐTCD
338 env:
339 jobname: Documentation
340 runs-on: ubuntu-latest
341 steps:
0dc787a9 342 - uses: actions/checkout@v2
889cacb6
ĐTCD
343 - run: ci/install-dependencies.sh
344 - run: ci/test-documentation.sh