3 on: [push, pull_request]
8 # If more than one workflow run is triggered for the very same commit hash
9 # (which happens when multiple branches pointing to the same commit), only
10 # the first one is allowed to run, the second will be kept in the "queued"
11 # state. This allows a successful completion of the first run to be reused
12 # in the second run via the `skip-if-redundant` logic in the `config` job.
14 # The only caveat is that if a workflow run is triggered for the same commit
15 # hash that another run is already being held, that latter run will be
16 # canceled. For more details about the `concurrency` attribute, see:
17 # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency
19 group: ${{ github.sha }}
24 if: vars.CI_BRANCHES == '' || contains(vars.CI_BRANCHES, github.ref_name)
25 runs-on: ubuntu-latest
27 enabled: ${{ steps.check-ref.outputs.enabled }}${{ steps.skip-if-redundant.outputs.enabled }}
28 skip_concurrent: ${{ steps.check-ref.outputs.skip_concurrent }}
30 - name: try to clone ci-config branch
32 git -c protocol.version=2 clone \
39 https://github.com/${{ github.repository }} \
42 git checkout HEAD -- ci/config || : ignore
44 name: check whether CI is enabled for ref
47 if test -x config-repo/ci/config/allow-ref
49 echo "::warning::ci/config/allow-ref is deprecated; use CI_BRANCHES instead"
50 if ! config-repo/ci/config/allow-ref '${{ github.ref }}'
57 if test -x config-repo/ci/config/skip-concurrent &&
58 ! config-repo/ci/config/skip-concurrent '${{ github.ref }}'
62 echo "enabled=$enabled" >>$GITHUB_OUTPUT
63 echo "skip_concurrent=$skip_concurrent" >>$GITHUB_OUTPUT
64 - name: skip if the commit or tree was already tested
66 uses: actions/github-script@v7
67 if: steps.check-ref.outputs.enabled == 'yes'
69 github-token: ${{secrets.GITHUB_TOKEN}}
72 // Figure out workflow ID, commit and tree
73 const { data: run } = await github.rest.actions.getWorkflowRun({
74 owner: context.repo.owner,
75 repo: context.repo.repo,
76 run_id: context.runId,
78 const workflow_id = run.workflow_id;
79 const head_sha = run.head_sha;
80 const tree_id = run.head_commit.tree_id;
82 // See whether there is a successful run for that commit or tree
83 const { data: runs } = await github.rest.actions.listWorkflowRuns({
84 owner: context.repo.owner,
85 repo: context.repo.repo,
90 for (const run of runs.workflow_runs) {
91 if (head_sha === run.head_sha) {
92 core.warning(`Successful run for the commit ${head_sha}: ${run.html_url}`);
93 core.setOutput('enabled', ' but skip');
96 if (run.head_commit && tree_id === run.head_commit.tree_id) {
97 core.warning(`Successful run for the tree ${tree_id}: ${run.html_url}`);
98 core.setOutput('enabled', ' but skip');
109 if: needs.ci-config.outputs.enabled == 'yes'
110 runs-on: windows-latest
112 group: windows-build-${{ github.ref }}
113 cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
115 - uses: actions/checkout@v4
118 run: ci/install-sdk.ps1
122 HOME: ${{runner.workspace}}
124 run: git-sdk/usr/bin/bash.exe -l -c 'ci/make-test-artifacts.sh artifacts'
125 - name: zip up tracked files
126 run: git archive -o artifacts/tracked.tar.gz HEAD
127 - name: upload tracked files and build artifacts
128 uses: actions/upload-artifact@v4
130 name: windows-artifacts
134 runs-on: windows-latest
135 needs: [ci-config, windows-build]
139 nr: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
141 group: windows-test-${{ matrix.nr }}-${{ github.ref }}
142 cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
144 - name: download tracked files and build artifacts
145 uses: actions/download-artifact@v4
147 name: windows-artifacts
148 path: ${{github.workspace}}
149 - name: extract tracked files and build artifacts
151 run: tar xf artifacts.tar.gz && tar xf tracked.tar.gz
154 run: ci/install-sdk.ps1
157 run: git-sdk/usr/bin/bash.exe -l -c 'ci/run-test-slice.sh ${{matrix.nr}} 10'
158 - name: print test failures
159 if: failure() && env.FAILED_TEST_ARTIFACTS != ''
161 run: ci/print-test-failures.sh
162 - name: Upload failed tests' directories
163 if: failure() && env.FAILED_TEST_ARTIFACTS != ''
164 uses: actions/upload-artifact@v4
166 name: failed-tests-windows-${{ matrix.nr }}
167 path: ${{env.FAILED_TEST_ARTIFACTS}}
171 if: github.event.repository.owner.login == 'git-for-windows' && needs.ci-config.outputs.enabled == 'yes'
174 GIT_CONFIG_PARAMETERS: "'user.name=CI' 'user.email=ci@git'"
175 runs-on: windows-latest
177 group: vs-build-${{ github.ref }}
178 cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
180 - uses: actions/checkout@v4
181 - uses: git-for-windows/setup-git-for-windows-sdk@v1
182 - name: initialize vcpkg
183 uses: actions/checkout@v4
185 repository: 'microsoft/vcpkg'
186 path: 'compat/vcbuild/vcpkg'
187 - name: download vcpkg artifacts
188 uses: git-for-windows/get-azure-pipelines-artifact@v0
192 - name: add msbuild to PATH
193 uses: microsoft/setup-msbuild@v2
194 - name: copy dlls to root
196 run: compat\vcbuild\vcpkg_copy_dlls.bat release
197 - name: generate Visual Studio solution
200 cmake `pwd`/contrib/buildsystems/ -DCMAKE_PREFIX_PATH=`pwd`/compat/vcbuild/vcpkg/installed/x64-windows \
201 -DNO_GETTEXT=YesPlease -DPERL_TESTS=OFF -DPYTHON_TESTS=OFF -DCURL_NO_CURL_CMAKE=ON
203 run: msbuild git.sln -property:Configuration=Release -property:Platform=x64 -maxCpuCount:4 -property:PlatformToolset=v142
204 - name: bundle artifact tar
208 VCPKG_ROOT: ${{github.workspace}}\compat\vcbuild\vcpkg
210 mkdir -p artifacts &&
211 eval "$(make -n artifacts-tar INCLUDE_DLLS_IN_ARTIFACTS=YesPlease ARTIFACTS_DIRECTORY=artifacts NO_GETTEXT=YesPlease 2>&1 | grep ^tar)"
212 - name: zip up tracked files
213 run: git archive -o artifacts/tracked.tar.gz HEAD
214 - name: upload tracked files and build artifacts
215 uses: actions/upload-artifact@v4
221 runs-on: windows-latest
222 needs: [ci-config, vs-build]
226 nr: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
228 group: vs-test-${{ matrix.nr }}-${{ github.ref }}
229 cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
231 - uses: git-for-windows/setup-git-for-windows-sdk@v1
232 - name: download tracked files and build artifacts
233 uses: actions/download-artifact@v4
236 path: ${{github.workspace}}
237 - name: extract tracked files and build artifacts
239 run: tar xf artifacts.tar.gz && tar xf tracked.tar.gz
244 run: . /etc/profile && ci/run-test-slice.sh ${{matrix.nr}} 10
245 - name: print test failures
246 if: failure() && env.FAILED_TEST_ARTIFACTS != ''
248 run: ci/print-test-failures.sh
249 - name: Upload failed tests' directories
250 if: failure() && env.FAILED_TEST_ARTIFACTS != ''
251 uses: actions/upload-artifact@v4
253 name: failed-tests-windows-vs-${{ matrix.nr }}
254 path: ${{env.FAILED_TEST_ARTIFACTS}}
256 name: ${{matrix.vector.jobname}} (${{matrix.vector.pool}})
258 if: needs.ci-config.outputs.enabled == 'yes'
260 group: ${{ matrix.vector.jobname }}-${{ matrix.vector.pool }}-${{ github.ref }}
261 cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
266 - jobname: linux-sha256
269 - jobname: linux-reftable
276 - jobname: linux-TEST-vars
283 - jobname: osx-reftable
289 - jobname: linux-gcc-default
292 - jobname: linux-leaks
295 - jobname: linux-reftable-leaks
298 - jobname: linux-asan-ubsan
302 CC: ${{matrix.vector.cc}}
303 CC_PACKAGE: ${{matrix.vector.cc_package}}
304 jobname: ${{matrix.vector.jobname}}
305 distro: ${{matrix.vector.pool}}
306 runs-on: ${{matrix.vector.pool}}
308 - uses: actions/checkout@v4
309 - run: ci/install-dependencies.sh
310 - run: ci/run-build-and-tests.sh
311 - name: print test failures
312 if: failure() && env.FAILED_TEST_ARTIFACTS != ''
313 run: ci/print-test-failures.sh
314 - name: Upload failed tests' directories
315 if: failure() && env.FAILED_TEST_ARTIFACTS != ''
316 uses: actions/upload-artifact@v4
318 name: failed-tests-${{matrix.vector.jobname}}
319 path: ${{env.FAILED_TEST_ARTIFACTS}}
321 name: fuzz smoke test
323 if: needs.ci-config.outputs.enabled == 'yes'
326 runs-on: ubuntu-latest
328 - uses: actions/checkout@v4
329 - run: ci/install-dependencies.sh
330 - run: ci/run-build-and-minimal-fuzzers.sh
332 name: ${{matrix.vector.jobname}} (${{matrix.vector.image}})
334 if: needs.ci-config.outputs.enabled == 'yes'
336 group: dockerized-${{ matrix.vector.jobname }}-${{ matrix.vector.image }}-${{ github.ref }}
337 cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
342 - jobname: linux-musl
344 distro: alpine-latest
346 image: i386/ubuntu:focal
347 distro: ubuntu32-20.04
350 distro: fedora-latest
352 jobname: ${{matrix.vector.jobname}}
353 distro: ${{matrix.vector.distro}}
354 runs-on: ubuntu-latest
355 container: ${{matrix.vector.image}}
357 - name: prepare libc6 for actions
358 if: matrix.vector.jobname == 'linux32'
359 run: apt -q update && apt -q -y install libc6-amd64 lib64stdc++6
360 - uses: actions/checkout@v4
361 - run: ci/install-dependencies.sh
362 - run: ci/run-build-and-tests.sh
363 - name: print test failures
364 if: failure() && env.FAILED_TEST_ARTIFACTS != ''
365 run: ci/print-test-failures.sh
366 - name: Upload failed tests' directories
367 if: failure() && env.FAILED_TEST_ARTIFACTS != ''
368 uses: actions/upload-artifact@v4
370 name: failed-tests-${{matrix.vector.jobname}}
371 path: ${{env.FAILED_TEST_ARTIFACTS}}
374 if: needs.ci-config.outputs.enabled == 'yes'
376 jobname: StaticAnalysis
377 runs-on: ubuntu-22.04
379 group: static-analysis-${{ github.ref }}
380 cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
382 - uses: actions/checkout@v4
383 - run: ci/install-dependencies.sh
384 - run: ci/run-static-analysis.sh
385 - run: ci/check-directional-formatting.bash
388 if: needs.ci-config.outputs.enabled == 'yes'
391 runs-on: ubuntu-20.04
393 group: sparse-${{ github.ref }}
394 cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
396 - name: Download a current `sparse` package
397 # Ubuntu's `sparse` version is too old for us
398 uses: git-for-windows/get-azure-pipelines-artifact@v0
402 artifact: sparse-20.04
403 - name: Install the current `sparse` package
404 run: sudo dpkg -i sparse-20.04/sparse_*.deb
405 - uses: actions/checkout@v4
406 - name: Install other dependencies
407 run: ci/install-dependencies.sh
412 if: needs.ci-config.outputs.enabled == 'yes'
414 group: documentation-${{ github.ref }}
415 cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
417 jobname: Documentation
418 runs-on: ubuntu-latest
420 - uses: actions/checkout@v4
421 - run: ci/install-dependencies.sh
422 - run: ci/test-documentation.sh