mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 16:53:09 +00:00

This refactors the CI workflows to group some logic and makes sure that all (pre)release binaries are actually tested. The screenshot below shows the execution logic of the reworked ci, https://github.com/Disservin/Stockfish/actions/runs/7773581379. You can also hover over the cards to see the execution flow. The `matrix.json` and `arm_matrix.json` define the binaries which will be uploaded to GitHub. Afterwards a matrix is created and each job compiles a profile guided build for that arch and uploads that as an artifact to GitHub. The Binaries/ARM_Binaries workflow's are called when the previous step has been completed, and uploads all artifacts to the (pre)release. This also fixes some indentations and renames the workflows, see https://github.com/official-stockfish/Stockfish/actions, where every workflow is called `Stockfish` vs https://github.com/Disservin/Stockfish/actions. It also increases the parallel compilation used for make from `-j2 to -j4`. It now also prevents the prerelease action from running on forks. A test release can be viewed here https://github.com/Disservin/Stockfish/releases. closes https://github.com/official-stockfish/Stockfish/pull/5035 No functional change
47 lines
1.5 KiB
YAML
47 lines
1.5 KiB
YAML
name: IWYU
|
|
on:
|
|
workflow_call:
|
|
jobs:
|
|
Analyzers:
|
|
name: Check includes
|
|
runs-on: ubuntu-22.04
|
|
defaults:
|
|
run:
|
|
working-directory: Stockfish/src
|
|
shell: bash
|
|
steps:
|
|
- name: Checkout Stockfish
|
|
uses: actions/checkout@v4
|
|
with:
|
|
path: Stockfish
|
|
|
|
- name: Checkout include-what-you-use
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: include-what-you-use/include-what-you-use
|
|
ref: f25caa280dc3277c4086ec345ad279a2463fea0f
|
|
path: include-what-you-use
|
|
|
|
- name: Download required linux packages
|
|
run: |
|
|
sudo add-apt-repository 'deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-17 main'
|
|
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
|
|
sudo apt update
|
|
sudo apt install -y libclang-17-dev clang-17 libc++-17-dev
|
|
|
|
- name: Set up include-what-you-use
|
|
run: |
|
|
mkdir build && cd build
|
|
cmake -G "Unix Makefiles" -DCMAKE_PREFIX_PATH="/usr/lib/llvm-17" ..
|
|
sudo make install
|
|
working-directory: include-what-you-use
|
|
|
|
- name: Check include-what-you-use
|
|
run: include-what-you-use --version
|
|
|
|
- name: Check includes
|
|
run: >
|
|
make analyze
|
|
COMP=clang
|
|
CXX=include-what-you-use
|
|
CXXFLAGS="-stdlib=libc++ -Xiwyu --comment_style=long -Xiwyu --mapping='${{ github.workspace }}/Stockfish/.github/ci/libcxx17.imp' -Xiwyu --error"
|