Skip to content

Commit

Permalink
feat(ci): nix cache for staging and testnet-internal
Browse files Browse the repository at this point in the history
  • Loading branch information
ozwaldorf committed Apr 3, 2024
1 parent 2cd6abf commit ce7ee54
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions .github/workflows/nix-cache.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: Nix Cache

on:
workflow_dispatch:
push:
# Only build nix cache for branches that need distribution
branches: [ "staging", "testnet-internal", "o/nix-ci" ]

env:
CARGO_TERM_COLOR: always

jobs:
# build & cache project dependencies
deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
- uses: cachix/cachix-action@v14
with:
name: fleek-network
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix build .#lightning-deps

# build & cache node binary
node:
runs-on: ubuntu-latest
needs: deps
steps:
- name: Clean runner image
run: |
# Free up some space, we only need nix anyways
df -h
sudo rm -rf \
"$AGENT_TOOLSDIRECTORY" \
/usr/local/share/boost \
/usr/share/dotnet \
/opt/ghc
echo "After removing files:"
df -h
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
- uses: cachix/cachix-action@v14
with:
name: fleek-network
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix build .#lightning-node

# build & cache services binaries
services:
runs-on: ubuntu-latest
needs: deps
steps:
- name: Clean runner image
run: |
# Free up some space, we only need nix anyways
df -h
sudo rm -rf \
"$AGENT_TOOLSDIRECTORY" \
/usr/local/share/boost \
/usr/share/dotnet \
/opt/ghc
echo "After removing files:"
df -h
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
- uses: cachix/cachix-action@v14
with:
name: fleek-network
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix build .#lightning-services

0 comments on commit ce7ee54

Please sign in to comment.