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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740
|
name: Build
on:
push:
pull_request:
workflow_dispatch:
inputs:
test_tag:
description: 'Optional tag name to simulate release'
required: false
env:
CTEST_OUTPUT_ON_FAILURE: ON
VERBOSE: 1
defaults:
run:
shell: bash
permissions:
contents: read
jobs:
build_and_test:
timeout-minutes: 30
env:
CMAKE_GENERATOR: Ninja
name: ${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
compiler: gcc
version: "11"
- os: ubuntu-22.04
compiler: gcc
version: "12"
- os: ubuntu-22.04
compiler: clang
version: "13"
- os: ubuntu-22.04
compiler: clang
version: "14"
- os: ubuntu-22.04
compiler: clang
version: "15"
- os: ubuntu-22.04-arm
compiler: gcc
version: "11"
- os: ubuntu-24.04
compiler: gcc
version: "13"
- os: ubuntu-24.04
compiler: gcc
version: "14"
- os: ubuntu-24.04
compiler: clang
version: "16"
- os: ubuntu-24.04
compiler: clang
version: "17"
- os: ubuntu-24.04
compiler: clang
version: "18"
- os: ubuntu-24.04-arm
compiler: gcc
version: "13"
- os: macOS-14
compiler: xcode
version: "15.3"
steps:
- name: Install dependencies on Linux
if: runner.os == 'Linux'
run: |
sudo apt-get update
cmake_params=(-D CMAKE_BUILD_TYPE=CI)
packages=(
elfutils
libhiredis-dev
libzstd-dev
python3
redis-server
redis-tools
)
# Install ld.gold (binutils) and ld.lld (lld) on different runs.
if [ "${{ matrix.os }}" = "ubuntu-22.04" ]; then
packages+=(binutils)
else
packages+=(lld)
fi
if [ "${{ matrix.os }}" = "ubuntu-22.04" ]; then
packages+=(doctest-dev)
packages+=(libfmt-dev)
packages+=(libxxhash-dev)
else
cmake_params+=(-D DEP_DOCTEST=DOWNLOAD)
cmake_params+=(-D DEP_XXHASH=DOWNLOAD)
fi
sudo apt-get install -y "${packages[@]}"
if [ "${{ matrix.compiler }}" = "gcc" ]; then
echo "CC=gcc-${{ matrix.version }}" >> $GITHUB_ENV
echo "CXX=g++-${{ matrix.version }}" >> $GITHUB_ENV
sudo apt-get install -y g++-${{ matrix.version }}
if [ "${{ !endsWith(matrix.os, '-arm') }}" = "true" ]; then
# The -multilib packages are only available on x86.
sudo apt-get install -y g++-${{ matrix.version }}-multilib
fi
if [ "${{ matrix.version }}" = 8 ]; then
# The compilation test in StdFilesystem.cmake doesn't work when
# GCC 9 is installed as well, so need to force linking with
# libstdc++fs for GCC 8. Note: This requires using -fuse-ld=lld to
# work.
echo "LDFLAGS=-lstdc++fs" >> $GITHUB_ENV
fi
else
echo "CC=clang-${{ matrix.version }}" >> $GITHUB_ENV
echo "CXX=clang++-${{ matrix.version }}" >> $GITHUB_ENV
sudo apt-get install -y clang-${{ matrix.version }} g++-multilib lld-${{ matrix.version }}
fi
case "${{ matrix.os }}" in
ubuntu-*)
cmake_params+=(-D DEPS=LOCAL)
;;
*)
;;
esac
echo "CMAKE_PARAMS=${cmake_params[*]}" >> $GITHUB_ENV
- name: Install dependencies on macOS
if: runner.os == 'macOS'
run: |
HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_CLEANUP=1 \
brew install hiredis redis
if [ "${{ matrix.compiler }}" = "gcc" ]; then
brew install gcc@${{ matrix.version }}
echo "CC=gcc-${{ matrix.version }}" >> $GITHUB_ENV
echo "CXX=g++-${{ matrix.version }}" >> $GITHUB_ENV
else
sudo xcode-select -switch /Applications/Xcode_${{ matrix.version }}.app
echo "CC=clang" >> $GITHUB_ENV
echo "CXX=clang++" >> $GITHUB_ENV
fi
- name: Get source
uses: actions/checkout@v4
- name: Build and test
run: ci/build
- name: Collect testdir from failed tests
if: failure()
run: ci/collect-testdir
- name: Upload testdir from failed tests
if: failure()
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.version }}-testdir.tar.xz
path: testdir.tar.xz
build_and_test_msys:
timeout-minutes: 30
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- sys: mingw64
compiler: gcc
os: windows-2025
- sys: mingw64
compiler: clang
extra_cmake_params: -DCMAKE_CXX_FLAGS=-Wno-deprecated # doctest issue #900
os: windows-2025
# - sys: clangarm64
# compiler: clang
# extra_cmake_params: -DENABLE_TESTING=OFF # occasionally crashes with "Exception: SegFault"
# os: windows-11-arm
name: 'Windows MSYS2 ${{ matrix.sys }} ${{ matrix.compiler }}'
defaults:
run:
shell: msys2 {0}
steps:
- name: '${{ matrix.sys }} Set up MSYS2'
uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
update: true
install: >-
git
diffutils
tar
pacboy: >-
toolchain:p
cmake:p
ninja:p
hiredis:p
lld:p
${{matrix.compiler}}:p
- name: Set up environment
run: |
if [ "${{ matrix.compiler }}" = "gcc" ]; then
echo "CC=gcc" >> $GITHUB_ENV
echo "CXX=g++" >> $GITHUB_ENV
else
echo "CC=clang" >> $GITHUB_ENV
echo "CXX=clang++" >> $GITHUB_ENV
fi
cmake_params=(-DCMAKE_BUILD_TYPE=CI)
cmake_params+=(${{matrix.extra_cmake_params}})
echo "CMAKE_PARAMS=${cmake_params[*]}" >> $GITHUB_ENV
- name: Get source
uses: actions/checkout@v4
- name: Build and test
run: ci/build
continue-on-error: ${{ matrix.allow_test_failures == true &&
steps.build-and-test.outputs.exit_status == 8 }}
env:
CMAKE_GENERATOR: Ninja
TEST_CC: ${{ matrix.compiler }}
- name: Collect testdir from failed tests
if: failure()
run: ci/collect-testdir
- name: Upload testdir from failed tests
if: failure()
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.sys }}-${{ matrix.compiler }}-testdir.tar.xz
path: testdir.tar.xz
build_documentation:
timeout-minutes: 30
name: Documentation
runs-on: ubuntu-24.04
env:
CMAKE_GENERATOR: Ninja
steps:
- name: Get source
uses: actions/checkout@v4
- name: Prepare environment
run: |
sudo apt-get install -y asciidoctor
- name: Build documentation
run: ci/build-docs
- name: Upload documentation
uses: actions/upload-artifact@v4
with:
name: docs
path: |
doc/INSTALL.md
GPL-3.0.txt
install
README.md
build_linux_aarch64_binary:
timeout-minutes: 30
name: Linux aarch64 binary
runs-on: ubuntu-22.04
strategy:
fail-fast: false
steps:
- name: Prepare environment
run: |
sudo apt-get update
sudo apt-get install -y g++-aarch64-linux-gnu libc6-dev-arm64-cross
- name: Get source
uses: actions/checkout@v4
- name: Build binary
env:
CMAKE_GENERATOR: Ninja
CMAKE_PARAMS: |
-D CMAKE_TOOLCHAIN_FILE=../toolchains/aarch64-linux-gnu.cmake
-D CMAKE_EXE_LINKER_FLAGS_INIT=-static-libstdc++
run: ci/build-binary
- name: Upload binary
uses: actions/upload-artifact@v4
with:
name: linux-aarch64-binary
path: install/ccache
retention-days: 3
build_linux_x86_64_binary:
timeout-minutes: 30
name: Linux x86_64 binary
runs-on: ubuntu-22.04
container:
image: almalinux:8
strategy:
fail-fast: false
steps:
- name: Prepare environment
run: |
dnf install -y dnf-plugins-core
dnf config-manager --set-enabled powertools
dnf install -y epel-release
dnf install -y \
--setopt=install_weak_deps=False \
--setopt=tsflags=nodocs \
cmake \
gcc \
gcc-c++ \
gcc-toolset-11 \
git \
ninja-build
- name: Get source
uses: actions/checkout@v4
- name: Build binary
env:
CMAKE_GENERATOR: Ninja
CMAKE_PARAMS: -D CMAKE_EXE_LINKER_FLAGS_INIT=-static-libstdc++
run: |
scl enable gcc-toolset-11 ci/build-binary
- name: Upload binary
uses: actions/upload-artifact@v4
with:
name: linux-x86_64-binary
path: install/ccache
retention-days: 3
build_darwin_binary:
timeout-minutes: 30
name: Build Darwin (macOS) binary
runs-on: macos-15
env:
CMAKE_GENERATOR: Ninja
steps:
- name: Get source
uses: actions/checkout@v4
- name: Build Darwin binary
run: ci/build-darwin-binary
- name: Upload binary
uses: actions/upload-artifact@v4
with:
name: darwin-binary
path: install/ccache
retention-days: 3
build_windows_binary:
timeout-minutes: 30
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
include:
- arch: i686
toolchain: i686-w64-mingw32-posix
apt_get: g++-mingw-w64-i686-posix
- arch: x86_64
toolchain: x86_64-w64-mingw32-posix
apt_get: g++-mingw-w64-x86-64-posix
- arch: aarch64
toolchain: aarch64-w64-mingw32
llvm_mingw: true
name: Windows ${{ matrix.arch }} binary
steps:
- name: Run apt-get
if: matrix.apt_get != ''
run: sudo apt-get update && sudo apt-get install ${{ matrix.apt_get }}
- name: Install llvm-mingw
if: matrix.llvm_mingw != ''
env:
TOOLCHAIN_URL_PREFIX: "https://github.com/mstorsjo/llvm-mingw/releases/download/20250709/"
TOOLCHAIN_FILENAME: "llvm-mingw-20250709-ucrt-ubuntu-22.04-x86_64.tar.xz"
TOOLCHAIN_SHA256: "60cafae6474c7411174cff1d4ba21a8e46cadbaeb05a1bace306add301628337"
run: |
curl -LO ${TOOLCHAIN_URL_PREFIX}${TOOLCHAIN_FILENAME}
echo ${TOOLCHAIN_SHA256} ${TOOLCHAIN_FILENAME} | sha256sum -c
tar -xf ${TOOLCHAIN_FILENAME}
rm ${TOOLCHAIN_FILENAME}
sudo mkdir -p /opt
sudo mv $(basename ${TOOLCHAIN_FILENAME} .tar.xz) /opt/llvm-mingw
echo /opt/llvm-mingw/bin >>${GITHUB_PATH}
- name: Get source
uses: actions/checkout@v4
- name: Build binary
env:
CMAKE_PARAMS: -D CMAKE_TOOLCHAIN_FILE=../toolchains/${{ matrix.toolchain }}.cmake
run: ci/build-binary
- name: Upload binary
uses: actions/upload-artifact@v4
with:
name: windows-${{ matrix.arch }}-binary
path: install/ccache.exe
retention-days: 3
specific_tests:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- name: Linux GCC debug + in source
os: ubuntu-22.04
CC: gcc
CXX: g++
BUILDDIR: .
CCACHE_LOC: .
CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=Debug
apt_get: elfutils libhiredis-dev libzstd-dev
- name: Linux GCC 32-bit
os: ubuntu-22.04
CC: gcc
CXX: g++
CFLAGS: -m32 -g -O2
CXXFLAGS: -m32 -g -O2
LDFLAGS: -m32
CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=CI -D DEPS=AUTO
apt_get: elfutils gcc-multilib g++-multilib lib32stdc++-10-dev
- name: Linux GCC CUDA
os: ubuntu-22.04
CC: gcc
CXX: g++
CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=CI
CUDA: 11.7.0-1
apt_get: elfutils libhiredis-dev libzstd-dev
- name: Linux MinGW 32-bit
os: ubuntu-22.04
CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=CI -D CMAKE_TOOLCHAIN_FILE=../toolchains/i686-w64-mingw32-posix.cmake
RUN_TESTS: none
apt_get: elfutils mingw-w64
- name: Linux MinGW 64-bit
os: ubuntu-22.04
CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=CI -D CMAKE_TOOLCHAIN_FILE=../toolchains/x86_64-w64-mingw32-posix.cmake
RUN_TESTS: unittest-in-wine
apt_get: elfutils mingw-w64 wine
- name: Windows VS2022 32-bit Ninja
os: windows-2022
msvc_arch: x64_x86
allow_test_failures: true # For now, don't fail the build on failure
CC: cl
CXX: cl
CMAKE_GENERATOR: Ninja
CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=CI
TEST_CC: clang -target i686-pc-windows-msvc
- name: Windows VS2022 32-bit MSBuild
os: windows-2022
msvc_arch: x64_x86
allow_test_failures: true # For now, don't fail the build on failure
CC: cl
CXX: cl
CMAKE_GENERATOR: Visual Studio 17 2022
CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=CI -A Win32
TEST_CC: clang -target i686-pc-windows-msvc
- name: Windows VS2022 64-bit Ninja
os: windows-2022
msvc_arch: x64
allow_test_failures: true # For now, don't fail the build on failure
CC: cl
CXX: cl
CMAKE_GENERATOR: Ninja
CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=CI
TEST_CC: clang -target x86_64-pc-windows-msvc
- name: Windows VS2022 64-bit MSBuild
os: windows-2022
msvc_arch: x64
allow_test_failures: true # For now, don't fail the build on failure
CC: cl
CXX: cl
CMAKE_GENERATOR: Visual Studio 17 2022
CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=CI -A x64
TEST_CC: clang -target x86_64-pc-windows-msvc
- name: Windows VS2022 ARM64 MSBuild
os: windows-11-arm
msvc_arch: ARM64
allow_test_failures: true # For now, don't fail the build on failure
CC: cl
CXX: cl
CMAKE_GENERATOR: Visual Studio 17 2022
CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=CI -DZSTD_FROM_INTERNET=ON -DHIREDIS_FROM_INTERNET=ON -A ARM64
TEST_CC: clang -target aarch64-pc-windows-msvc
- name: Clang address & UB sanitizer
os: ubuntu-22.04
CC: clang
CXX: clang++
CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=CI -DENABLE_SANITIZER_ADDRESS=ON -DENABLE_SANITIZER_UNDEFINED_BEHAVIOR=ON
ASAN_OPTIONS: detect_leaks=0
apt_get: elfutils libzstd-dev libhiredis-dev
- name: Clang static analyzer
os: ubuntu-22.04
CC: clang
CXX: clang++
CMAKE_PREFIX: scan-build
RUN_TESTS: none
apt_get: libzstd-dev libhiredis-dev
- name: Linux binary
os: ubuntu-22.04
CC: gcc
CXX: g++
SPECIAL: build-and-verify-package
CMAKE_PARAMS: -DCMAKE_BUILD_TYPE=Release
apt_get: elfutils libzstd-dev libhiredis-dev
- name: Source package
os: ubuntu-22.04
CC: gcc
CXX: g++
SPECIAL: build-and-verify-source-package
apt_get: elfutils libzstd-dev libhiredis-dev asciidoctor
- name: Clang-Tidy
os: ubuntu-22.04
CC: clang-12
CXX: clang++-12
RUN_TESTS: none
CMAKE_PARAMS: -DENABLE_CLANG_TIDY=ON -DCLANGTIDY=/usr/bin/clang-tidy-12
apt_get: libzstd-dev libhiredis-dev clang-12 clang-tidy-12
steps:
- name: Get source
uses: actions/checkout@v4
- name: Install CUDA
if: matrix.CUDA != ''
run: sudo --preserve-env=CUDA,GITHUB_PATH ci/install-cuda
env:
CUDA: ${{ matrix.CUDA }}
- name: Run apt-get
if: matrix.apt_get != ''
run: sudo apt-get update && sudo apt-get install ${{ matrix.apt_get }}
- name: Prepare Windows environment (Visual Studio)
if: runner.os == 'Windows'
uses: ilammy/msvc-dev-cmd@v1.12.0
with:
arch: ${{ matrix.msvc_arch }}
- name: Prepare Windows environment (Clang)
if: runner.os == 'Windows'
shell: powershell
run: |
$ErrorActionPreference = 'Stop'
# The test suite currently requires that the compiler specified by the
# "CC" environment variable is on a path without spaces. Provide that
# by creating a junction from ~/opt/llvm to the Visual Studio path.
$null = New-Item `
-Path "${HOME}\opt\llvm" `
-ItemType Junction `
-Target "${env:VCINSTALLDIR}\Tools\Llvm\x64" `
-Force
"Path=${HOME}\opt\llvm\bin;${env:Path}" | `
Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- name: Build and test
id: build-and-test
env:
ASAN_OPTIONS: ${{ matrix.ASAN_OPTIONS }}
BUILDDIR: ${{ matrix.BUILDDIR }}
CC: ${{ matrix.CC }}
CCACHE_LOC: ${{ matrix.CCACHE_LOC }}
CFLAGS: ${{ matrix.CFLAGS }}
CMAKE_GENERATOR: ${{ matrix.CMAKE_GENERATOR }}
CMAKE_PARAMS: ${{ matrix.CMAKE_PARAMS }}
CXX: ${{ matrix.CXX }}
CXXFLAGS: ${{ matrix.CXXFLAGS }}
EXTRA_CMAKE_BUILD_FLAGS: ${{ matrix.EXTRA_CMAKE_BUILD_FLAGS }}
LDFLAGS: ${{ matrix.LDFLAGS }}
RUN_TESTS: ${{ matrix.RUN_TESTS }}
SPECIAL: ${{ matrix.SPECIAL }}
TEST_CC: ${{ matrix.TEST_CC }}
run: |
rc=0
ci/build || rc=$?
echo "exit_status=$rc" >> $GITHUB_OUTPUT
exit $rc
# CTest exits with return code 8 on test failure.
continue-on-error: ${{ matrix.allow_test_failures == true &&
steps.build-and-test.outputs.exit_status == 8 }}
- name: Collect testdir from failed tests
if: failure() || steps.build-and-test.outcome == 'failure'
run: ci/collect-testdir
# TODO: in case of build-and-verify-*package the BUILDDIR is set within those scripts.
- name: Upload testdir from failed tests
if: failure() || steps.build-and-test.outcome == 'failure'
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }} - testdir.tar.xz
path: testdir.tar.xz
build_release:
name: Build release
needs:
- build_darwin_binary
- build_documentation
- build_linux_aarch64_binary
- build_linux_x86_64_binary
- build_windows_binary
runs-on: ubuntu-24.04
steps:
- name: Prepare environment
run: |
sudo apt-get update
sudo apt-get install -y minisign
- name: Get source
uses: actions/checkout@v4
- name: Download binaries
uses: actions/download-artifact@v5
with:
pattern: "*-binary"
- name: Download docs
uses: actions/download-artifact@v5
with:
pattern: docs
path: docs
- name: Build release
run: ci/prepare-release
- name: Sign release archives
if: env.MINISIGN_KEY != ''
env:
MINISIGN_KEY: ${{ secrets.MINISIGN_KEY }}
run: |
mkdir -p ~/.minisign
echo "${MINISIGN_KEY}" | base64 -d > ~/.minisign/minisign.key
minisign -Sm release/*
- name: Upload release
uses: actions/upload-artifact@v4
if: ${{ github.ref_type == 'tag' || github.event.inputs.test_tag != '' }}
with:
name: release
path: release
retention-days: 3
create_release:
name: Create release
needs:
- build_release
permissions:
contents: write
if: ${{ github.ref_type == 'tag' || github.event.inputs.test_tag != '' }}
runs-on: ubuntu-24.04
steps:
- name: Get source
uses: actions/checkout@v4
- name: Download release
uses: actions/download-artifact@v5
with:
name: release
path: release
- name: Create release notes
run: |
TAG_NAME="${{ github.event.inputs.test_tag || github.ref_name }}"
ci/generate-release-notes "${TAG_NAME}" >release-notes.md
- name: Create GitHub Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
TAG_NAME="${{ github.event.inputs.test_tag || github.ref_name }}"
gh release create "${TAG_NAME}" \
--draft \
--notes-file release-notes.md \
--title "${TAG_NAME#v*}" \
release/*
check_format:
timeout-minutes: 30
name: Code formatting
runs-on: ubuntu-22.04
strategy:
fail-fast: false
steps:
- name: Get source
uses: actions/checkout@v4
- name: Run Clang-Format in check mode
run: misc/format-files --all --check
spelling:
timeout-minutes: 30
name: Spelling
runs-on: ubuntu-22.04
strategy:
fail-fast: false
steps:
- name: Get source
uses: actions/checkout@v4
- name: Install spell checkers
run: |
sudo apt-get update
sudo apt-get install python3-pip
pip3 install codespell==2.4.1 typos==1.35.6
- name: Run codespell
run: codespell -q 7 -S ".git,build*,./misc/typos.toml,./src/third_party/*" -I misc/codespell-allowlist.txt
- name: Run typos
run: typos -c misc/typos.toml
|