measure cmake run #52
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: build dnf5 with ccache to check for quick build errors | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build-with-ccache: | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:rawhide | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: | | |
dnf install -y ccache which && dnf builddep -y ./dnf5.spec | |
- name: Prepare ccache timestamp | |
id: ccache_cache_timestamp | |
run: | |
echo "timestamp=$(date +%Y-%m-%d-%H:%M:%S) UTC" >> "$GITHUB_OUTPUT" | |
- name: ccache cache files | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/ccache | |
key: ${{ runner.os }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }} | |
restore-keys: | | |
${{ runner.os }}-ccache- | |
- name: Create ccache symlinks to prioritize it over gcc | |
run: | | |
ln -s /usr/bin/ccache /usr/local/bin/gcc | |
ln -s /usr/bin/ccache /usr/local/bin/g++ | |
ln -s /usr/bin/ccache /usr/local/bin/cc | |
ln -s /usr/bin/ccache /usr/local/bin/c++ | |
- name: Zero ccache statistics | |
run: ccache -z | |
- name: Configure cmake | |
run: cmake -S . -B build | |
- name: Build dnf5 | |
run: cmake --build build | |
- name: Display ccache statistics | |
run: ccache -s |