2024-06-14 11:54:03 -05:00
|
|
|
name: Run Nix Flake Checks
|
|
|
|
|
|
|
|
on:
|
2024-06-14 11:54:54 -05:00
|
|
|
workflow_call:
|
2024-06-14 11:54:03 -05:00
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
lockFile:
|
|
|
|
description: 'flake.lock file'
|
|
|
|
type: string
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.host }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
# The default disk size of these runners is ~14GB
|
|
|
|
# Cleanup the disk, see upstream discussion https://github.com/actions/runner-images/issues/2840.
|
|
|
|
- name: Cleanup Disk Space
|
|
|
|
run: |
|
|
|
|
echo "Before removing files:"
|
|
|
|
df -h
|
|
|
|
sudo rm -rf /usr/share/dotnet
|
|
|
|
sudo rm -rf /opt/ghc
|
|
|
|
sudo rm -rf /opt
|
|
|
|
sudo rm -rf "/usr/local/share/boost"
|
|
|
|
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
|
|
|
|
echo "After removing files:"
|
|
|
|
df -h
|
|
|
|
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- uses: DeterminateSystems/nix-installer-action@main
|
2024-06-14 12:36:32 -05:00
|
|
|
- uses: DeterminateSystems/magic-nix-cache-action@v7
|
2024-06-14 11:54:03 -05:00
|
|
|
|
|
|
|
- uses: cachix/cachix-action@v14
|
|
|
|
with:
|
|
|
|
name: daylin
|
|
|
|
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
|
|
|
|
|
|
|
|
- name: write lock file
|
|
|
|
if: "${{ inputs.lockFile != '' }}"
|
|
|
|
run: |
|
|
|
|
echo '${{ inputs.lockFile }}' > flake.lock
|
|
|
|
git diff
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2024-06-14 12:17:39 -05:00
|
|
|
cachix watch-exec daylin -- nix build --accept-flake-config '.#checks.x86_64-linux.packageCheck'
|