Skip to content

Commit

Permalink
Add CI and cache
Browse files Browse the repository at this point in the history
  • Loading branch information
nbdd0121 committed Jan 12, 2024
1 parent b140867 commit 29ba2a7
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 23 deletions.
93 changes: 93 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
name: CI

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4

- name: Install Nix
uses: cachix/install-nix-action@v24

- name: Nix Format Check
run: nix fmt -- . --check

- name: Nix Syntax Check
run: nix flake check

build-plan:
# Save some computation. If the checks fail, don't build.
needs: checks
runs-on: ubuntu-latest
outputs:
attrs: ${{ steps.plan.outputs.ATTRS }}
steps:
- name: checkout
uses: actions/checkout@v4

- name: Install Nix
uses: cachix/install-nix-action@v24
with:
nix_path: nixpkgs=channel:nixos-23.11

- name: Build and Cache Attic
if: github.event_name != 'pull_request'
run: |
nix profile install github:zhaofengli/attic#attic
attic login --set-default lowrisc https://nix-cache.lowrisc.org/ ${{ secrets.NIX_CACHE_TOKEN }}
attic push public $(which attic)
- name: Generate Nix Build Plan
id: plan
run: |
REBUILD=()
echo '| Package | Status |' >> $GITHUB_STEP_SUMMARY
echo '|---------|--------|' >> $GITHUB_STEP_SUMMARY
for LINE in $(nix-shell -p nix-eval-jobs --run 'nix-eval-jobs --accept-flake-config --check-cache-status --flake .#packages.x86_64-linux'); do
ATTR=$(echo "$LINE" | jq -r .attr)
if echo "$LINE" | jq -e .isCached; then
echo "| $ATTR | ✅Cached |" >> $GITHUB_STEP_SUMMARY
else
REBUILD+=($ATTR)
echo "| $ATTR | ⏳Need Rebuild |" >> $GITHUB_STEP_SUMMARY
fi
done
echo 'ATTRS<<EOF' >> $GITHUB_OUTPUT
jq --null-input '$ARGS.positional' --args -- "${REBUILD[@]}" >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
build:
needs: build-plan
runs-on: ubuntu-latest
strategy:
matrix:
attr: ${{fromJSON(needs.build-plan.outputs.attrs)}}
steps:
- name: checkout
uses: actions/checkout@v4

- name: Install Nix
uses: cachix/install-nix-action@v24

- name: Setup Cache
if: github.event_name != 'pull_request'
run: |
nix profile install github:zhaofengli/attic#attic
attic login --set-default lowrisc https://nix-cache.lowrisc.org/ ${{ secrets.NIX_CACHE_TOKEN }}
- name: Build
run: nix build ".#${{ matrix.attr }}" --accept-flake-config

- name: Upload Cache
if: github.event_name != 'pull_request'
run: |
attic push public result/
23 changes: 0 additions & 23 deletions .github/workflows/quality.yml

This file was deleted.

6 changes: 6 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@
inputs.flake-utils.follows = "flake-utils";
};
};

nixConfig = {
extra-substituters = ["https://nix-cache.lowrisc.org/public/"];
extra-trusted-public-keys = ["public:O6JLD0yXzaJDPiQW1meVu32JIDViuaPtGDfjlOopU7o="];
};

outputs = {
self,
nixpkgs,
Expand Down

0 comments on commit 29ba2a7

Please sign in to comment.