From b4706cd6ac3b6eff8dd7734428d2aa360082fe2c Mon Sep 17 00:00:00 2001 From: osmaczko <33099791+osmaczko@users.noreply.github.com> Date: Mon, 23 Feb 2026 17:31:03 +0100 Subject: [PATCH] ci: reduce CI times by unifying jobs and caching Cargo artifacts - Consolidate build and test into a single job to avoid duplicate builds; artifact sharing across jobs proved too complex to justify - NBS was the main bottleneck; this change improves CI duration beyond that - Add caching for Cargo registry, git sources, and libchat's target --- .github/workflows/ci.yml | 59 +++++++++++++++++++++------------------- 1 file changed, 31 insertions(+), 28 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 483b3ea..1cd6460 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,8 +9,8 @@ on: - main jobs: - build: - name: Build + build-and-test: + name: Build and Test strategy: matrix: os: [ubuntu-latest, macOS-latest] @@ -19,39 +19,42 @@ jobs: - uses: actions/checkout@v6 with: submodules: recursive + - id: hashes + name: Compute cache hashes + run: | + echo "nbs=$(git rev-parse HEAD:vendor/nimbus-build-system)" >> $GITHUB_OUTPUT + echo "libchat=$(git rev-parse HEAD:vendor/libchat)" >> $GITHUB_OUTPUT # Cache the Nim compiler built by nimbus-build-system (NBS). # Building Nim from source is the slowest part of `make update`. # Keyed on the NBS submodule commit — auto-invalidates when NBS is bumped. - - id: nbs - run: echo "hash=$(git rev-parse HEAD:vendor/nimbus-build-system)" >> $GITHUB_OUTPUT - - uses: actions/cache@v4 + - name: Cache/restore NBS + uses: actions/cache@v4 with: path: vendor/nimbus-build-system/vendor/Nim - key: ${{ runner.os }}-nbs-${{ steps.nbs.outputs.hash }} - - run: make update - - run: make all - - test: - name: Test - needs: build - strategy: - matrix: - os: [ubuntu-latest, macOS-latest] - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v6 + key: ${{ runner.os }}-nbs-${{ steps.hashes.outputs.nbs }} + - name: Cache/restore Cargo registry + uses: actions/cache@v4 with: - submodules: recursive - - id: nbs - run: echo "hash=$(git rev-parse HEAD:vendor/nimbus-build-system)" >> $GITHUB_OUTPUT - - uses: actions/cache@v4 + path: | + ~/.cargo/registry + ~/.cargo/git + key: ${{ runner.os }}-cargo-deps-${{ hashFiles('vendor/libchat/Cargo.lock') }} + restore-keys: | + ${{ runner.os }}-cargo-deps- + - name: Cache/restore libchat + uses: actions/cache@v4 with: - path: vendor/nimbus-build-system/vendor/Nim - key: ${{ runner.os }}-nbs-${{ steps.nbs.outputs.hash }} - - run: make update - - run: make tests + path: vendor/libchat/target + key: ${{ runner.os }}-libchat-${{ steps.hashes.outputs.libchat }} + - name: Update dependencies + run: make update + - name: Build + run: make all + - name: Test + run: make tests nix-build: + name: Nix Build runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 @@ -62,9 +65,9 @@ jobs: nix_path: nixpkgs=channel:nixos-unstable extra_nix_config: | experimental-features = nix-command flakes - - run: nix build ".?submodules=1#" --print-build-logs + - name: Build + run: nix build ".?submodules=1#" --print-build-logs - name: Verify outputs run: | test -f result/lib/liblogoschat.so test -f result/include/liblogoschat.h -