2023-11-16 22:00:49 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check:
|
2023-11-17 15:39:31 +00:00
|
|
|
name: Check, build and cache Nix flake
|
2023-11-16 22:00:49 +00:00
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2024-06-30 13:10:23 +01:00
|
|
|
- uses: cachix/install-nix-action@v27
|
2023-11-16 23:50:17 +00:00
|
|
|
with:
|
|
|
|
# Gitea will supply a token in GITHUB_TOKEN, which this action will
|
|
|
|
# try to pass to Nix when downloading from GitHub
|
|
|
|
github_access_token: ${{ secrets.GH_PULL_TOKEN }}
|
|
|
|
extra_nix_config: |
|
|
|
|
# Make sure we're using sandbox
|
|
|
|
sandbox-fallback = false
|
2024-06-30 13:10:23 +01:00
|
|
|
# Big C++ projects fill up memory...
|
|
|
|
cores = 6
|
2023-11-17 22:57:44 +00:00
|
|
|
|
2024-07-20 16:46:10 +01:00
|
|
|
extra-substituters = https://nix-cache.nul.ie
|
|
|
|
extra-trusted-public-keys = nix-cache.nul.ie-1:BzH5yMfF4HbzY1C977XzOxoPhEc9Zbu39ftPkUbH+m4=
|
2023-11-16 22:00:49 +00:00
|
|
|
|
2023-11-17 23:47:11 +00:00
|
|
|
- name: Check flake
|
|
|
|
run: nix flake check
|
|
|
|
- name: Build the world
|
2023-11-17 15:39:31 +00:00
|
|
|
id: build
|
|
|
|
run: |
|
|
|
|
path=$(nix build --no-link .#ci.x86_64-linux --json | jq -r .[0].outputs.out)
|
|
|
|
echo "path=$path" >> "$GITHUB_OUTPUT"
|
2024-07-20 16:46:10 +01:00
|
|
|
|
2023-11-17 15:05:19 +00:00
|
|
|
- name: Push to cache
|
2024-07-20 16:46:10 +01:00
|
|
|
env:
|
|
|
|
HARMONIA_SSH_KEY: ${{ secrets.HARMONIA_SSH_KEY }}
|
2023-11-17 15:05:19 +00:00
|
|
|
run: |
|
2024-07-20 16:46:10 +01:00
|
|
|
ci/push-to-cache.sh "${{ steps.build.outputs.path }}"
|