mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 15:10:19 +00:00
CI: Move the clang-plugins-enabled build to a separate job
Some checks are pending
CI / Lagom (FUZZ, ubuntu-22.04, Linux, Clang) (push) Waiting to run
CI / Lagom (NO_FUZZ, macos-14, macOS, Clang) (push) Waiting to run
CI / Lagom (NO_FUZZ, ubuntu-22.04, Linux, Clang) (push) Waiting to run
CI / Lagom (NO_FUZZ, ubuntu-22.04, Linux, GNU) (push) Waiting to run
Validate code with clang plugins / build-and-verify (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (ubuntu-22.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Push notes / build (push) Waiting to run
Some checks are pending
CI / Lagom (FUZZ, ubuntu-22.04, Linux, Clang) (push) Waiting to run
CI / Lagom (NO_FUZZ, macos-14, macOS, Clang) (push) Waiting to run
CI / Lagom (NO_FUZZ, ubuntu-22.04, Linux, Clang) (push) Waiting to run
CI / Lagom (NO_FUZZ, ubuntu-22.04, Linux, GNU) (push) Waiting to run
Validate code with clang plugins / build-and-verify (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (ubuntu-22.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Push notes / build (push) Waiting to run
The plugins build that runs on master currently uses the same ccache key as non-plugin builds in PRs. This means all clang PR builds are not able to use ccache. Move the plugins build to a separate job. This job also has sanitizers disabled to make the plugins build quicker.
This commit is contained in:
parent
f52bb43673
commit
730ec6aff9
Notes:
github-actions[bot]
2024-08-27 01:49:55 +00:00
Author: https://github.com/trflynn89 Commit: https://github.com/LadybirdBrowser/ladybird/commit/730ec6aff96 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1199 Reviewed-by: https://github.com/ADKaster ✅
2 changed files with 50 additions and 21 deletions
20
.github/workflows/clang-plugins.yml
vendored
Normal file
20
.github/workflows/clang-plugins.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: Validate code with clang plugins
|
||||
|
||||
# FIXME: The plugins seem to make this build uncacheable by ccache. We should figure that out and enable this job on PRs.
|
||||
# Perhaps with https://ccache.dev/manual/latest.html#config_compiler_check, which mentions plugins.
|
||||
on: [push]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build-and-verify:
|
||||
if: always() && github.repository == 'LadybirdBrowser/ladybird' && github.ref == 'refs/heads/master'
|
||||
|
||||
uses: ./.github/workflows/lagom-template.yml
|
||||
with:
|
||||
toolchain: 'Clang'
|
||||
os_name: 'Linux'
|
||||
os: 'ubuntu-22.04'
|
||||
clang_plugins: true
|
51
.github/workflows/lagom-template.yml
vendored
51
.github/workflows/lagom-template.yml
vendored
|
@ -16,6 +16,10 @@ on:
|
|||
required: false
|
||||
type: string
|
||||
default: 'NO_FUZZ'
|
||||
clang_plugins:
|
||||
required: false
|
||||
type: boolean
|
||||
default: false
|
||||
|
||||
env:
|
||||
# runner.workspace = /home/runner/work/serenity
|
||||
|
@ -49,17 +53,6 @@ jobs:
|
|||
|
||||
# === PREPARE FOR BUILDING ===
|
||||
|
||||
- name: Restore Caches
|
||||
uses: ./.github/actions/cache-restore
|
||||
id: 'cache-restore'
|
||||
with:
|
||||
os: ${{ inputs.os_name }}
|
||||
arch: 'Lagom'
|
||||
toolchain: ${{ inputs.toolchain }}
|
||||
cache_key_extra: ${{ inputs.fuzzer }}
|
||||
serenity_ccache_path: ${{ env.CCACHE_DIR }}
|
||||
download_cache_path: ${{ github.workspace }}/Build/caches
|
||||
|
||||
- name: Assign Build Parameters
|
||||
id: 'build-parameters'
|
||||
run: |
|
||||
|
@ -67,22 +60,38 @@ jobs:
|
|||
if ${{ inputs.toolchain == 'Clang' }} ; then
|
||||
echo "host_cc=clang-18" >> "$GITHUB_OUTPUT"
|
||||
echo "host_cxx=clang++-18" >> "$GITHUB_OUTPUT"
|
||||
if ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} ; then
|
||||
echo "extra_cmake_options=-DENABLE_CLANG_PLUGINS=ON" >> "$GITHUB_OUTPUT"
|
||||
else
|
||||
echo "extra_cmake_options=" >> "$GITHUB_OUTPUT"
|
||||
fi
|
||||
elif ${{ inputs.toolchain == 'GNU' }} ; then
|
||||
echo "host_cc=gcc-13" >> "$GITHUB_OUTPUT"
|
||||
echo "host_cxx=g++-13" >> "$GITHUB_OUTPUT"
|
||||
echo "extra_cmake_options=" >> "$GITHUB_OUTPUT"
|
||||
fi
|
||||
elif ${{ inputs.os_name == 'macOS' }} ; then
|
||||
echo "host_cc=$(xcrun --find clang)" >> "$GITHUB_OUTPUT"
|
||||
echo "host_cxx=$(xcrun --find clang++)" >> "$GITHUB_OUTPUT"
|
||||
echo "extra_cmake_options=" >> "$GITHUB_OUTPUT"
|
||||
fi
|
||||
|
||||
if ${{ inputs.clang_plugins }} ; then
|
||||
echo "ccache_key=${{ inputs.fuzzer }}-CLANG_PLUGINS" >> "$GITHUB_OUTPUT"
|
||||
echo "cmake_build_preset=CI" >> "$GITHUB_OUTPUT"
|
||||
echo "cmake_test_preset=default" >> "$GITHUB_OUTPUT"
|
||||
echo "cmake_options=-DENABLE_CLANG_PLUGINS=ON" >> "$GITHUB_OUTPUT"
|
||||
else
|
||||
echo "ccache_key=${{ inputs.fuzzer }}" >> "$GITHUB_OUTPUT"
|
||||
echo "cmake_build_preset=Sanitizer_CI" >> "$GITHUB_OUTPUT"
|
||||
echo "cmake_test_preset=Sanitizer" >> "$GITHUB_OUTPUT"
|
||||
echo "cmake_options=" >> "$GITHUB_OUTPUT"
|
||||
fi
|
||||
|
||||
- name: Restore Caches
|
||||
uses: ./.github/actions/cache-restore
|
||||
id: 'cache-restore'
|
||||
with:
|
||||
os: ${{ inputs.os_name }}
|
||||
arch: 'Lagom'
|
||||
toolchain: ${{ inputs.toolchain }}
|
||||
cache_key_extra: ${{ steps.build-parameters.outputs.ccache_key }}
|
||||
serenity_ccache_path: ${{ env.CCACHE_DIR }}
|
||||
download_cache_path: ${{ github.workspace }}/Build/caches
|
||||
|
||||
- name: Set dynamic environment variables
|
||||
id: 'set-env-vars'
|
||||
run: |
|
||||
|
@ -99,10 +108,10 @@ jobs:
|
|||
if: ${{ inputs.fuzzer == 'NO_FUZZ' }}
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: |
|
||||
cmake --preset Sanitizer_CI -B Build \
|
||||
cmake --preset ${{ steps.build-parameters.outputs.cmake_build_preset }} -B Build \
|
||||
-DINCLUDE_WASM_SPEC_TESTS=ON \
|
||||
-DWASM_SPEC_TEST_SKIP_FORMATTING=ON \
|
||||
${{ steps.build-parameters.outputs.extra_cmake_options }} \
|
||||
${{ steps.build-parameters.outputs.cmake_options }} \
|
||||
-DCMAKE_C_COMPILER=${{ steps.build-parameters.outputs.host_cc }} \
|
||||
-DCMAKE_CXX_COMPILER=${{ steps.build-parameters.outputs.host_cxx }}
|
||||
|
||||
|
@ -169,7 +178,7 @@ jobs:
|
|||
- name: Test
|
||||
if: ${{ inputs.fuzzer == 'NO_FUZZ' }}
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: ctest --preset Sanitizer --output-on-failure --test-dir Build
|
||||
run: ctest --preset ${{ steps.build-parameters.outputs.cmake_test_preset }} --output-on-failure --test-dir Build
|
||||
env:
|
||||
TESTS_ONLY: 1
|
||||
|
||||
|
|
Loading…
Reference in a new issue