magic-nix-cache-action/.github/workflows/ci.yml

140 lines
4.3 KiB
YAML
Raw Permalink Normal View History

name: CI
on:
merge_group:
pull_request:
push:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-22.04
steps:
2024-04-18 19:12:29 +02:00
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
2024-04-12 01:23:06 +02:00
- uses: DeterminateSystems/magic-nix-cache-action@main
2024-03-06 22:10:54 +01:00
- name: Check shell scripts
run: |
nix develop --command shellcheck ./.github/workflows/cache-test.sh
2024-04-12 01:23:06 +02:00
- uses: DeterminateSystems/nix-installer-action@main
- name: Install pnpm dependencies
run: nix develop --command pnpm install
- name: Check formatting
2024-04-21 19:17:55 +02:00
run: nix develop --command pnpm run check-fmt
- name: Lint
run: nix develop --command pnpm run lint
- name: Build
run: nix develop --command pnpm run build
- name: Package
run: nix develop --command pnpm run package
2024-04-12 01:23:06 +02:00
- run: git status --porcelain=v1
2024-04-21 18:43:25 +02:00
- run: git diff --exit-code
test-no-nix:
2024-05-20 14:20:03 +02:00
needs: build
2024-04-18 19:10:02 +02:00
name: "Test: Nix not installed"
runs-on: ubuntu-22.04
permissions:
id-token: "write"
contents: "read"
env:
ACTIONS_STEP_DEBUG: true
steps:
2024-04-18 19:12:29 +02:00
- uses: actions/checkout@v4
- name: Cache the store
uses: ./
2024-05-17 22:57:10 +02:00
with:
2024-05-22 18:26:19 +02:00
_internal-strict-mode: true
2024-05-10 22:12:34 +02:00
run-x86_64-linux-untrusted:
2024-05-20 14:20:03 +02:00
needs: build
2024-05-22 22:33:00 +02:00
name: Run x86_64-linux, Untrusted
2024-05-10 22:12:34 +02:00
runs-on: ubuntu-22.04
permissions:
id-token: "write"
contents: "read"
env:
ACTIONS_STEP_DEBUG: true
steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
with:
flakehub: true
extra-conf: |
narinfo-cache-negative-ttl = 0
2024-05-10 22:22:11 +02:00
trusted-users = root
2024-05-10 22:12:34 +02:00
- name: Cache the store
uses: ./
2024-05-17 22:57:10 +02:00
with:
2024-05-22 18:26:19 +02:00
_internal-strict-mode: true
2024-05-10 22:12:34 +02:00
2024-05-18 20:01:41 +02:00
run-systems:
if: github.event_name == 'merge_group'
needs: build
name: "Test: ${{ matrix.systems.nix-system }} gha:${{matrix.use-gha-cache}},fhc:${{matrix.use-flakehub}},id:${{matrix.id-token}},determinate:${{matrix.determinate}}"
2024-05-18 20:01:41 +02:00
runs-on: "${{ matrix.systems.runner }}"
2024-01-11 17:55:33 +01:00
permissions:
id-token: "write"
contents: "read"
2024-03-25 21:54:54 +01:00
env:
ACTIONS_STEP_DEBUG: true
2024-05-18 20:01:41 +02:00
strategy:
fail-fast: false
2024-05-18 20:01:41 +02:00
matrix:
determinate: [true, false]
use-gha-cache: ["disabled", "no-preference", "enabled"]
use-flakehub: ["disabled", "no-preference", "enabled"]
id-token: ["write", "none"]
2024-05-18 20:01:41 +02:00
systems:
- nix-system: "aarch64-darwin"
runner: "macos-latest"
2024-05-18 20:01:41 +02:00
- nix-system: "x86_64-darwin"
runner: "macos-13"
2024-05-22 22:33:00 +02:00
- nix-system: "aarch64-linux"
runner: "namespace-profile-default-arm64"
2024-05-18 20:01:41 +02:00
- nix-system: "x86_64-linux"
runner: "ubuntu-22.04"
2024-01-09 18:55:07 +01:00
steps:
2024-04-18 19:12:29 +02:00
- uses: actions/checkout@v4
2024-05-18 20:01:41 +02:00
- name: Install Nix on ${{ matrix.systems.nix-system }} system
2024-01-09 18:55:07 +01:00
uses: DeterminateSystems/nix-installer-action@main
with:
_internal-obliterate-actions-id-token-request-variables: ${{ matrix.id-token == 'none' }}
determinate: ${{ matrix.determinate }}
2024-01-09 18:55:07 +01:00
extra-conf: |
narinfo-cache-negative-ttl = 0
- name: Cache the store
uses: ./
2024-05-17 22:57:10 +02:00
with:
2024-05-22 18:26:19 +02:00
_internal-strict-mode: true
_internal-obliterate-actions-id-token-request-variables: ${{ matrix.id-token == 'none' }}
use-gha-cache: ${{ matrix.use-gha-cache }}
use-flakehub: ${{ matrix.use-flakehub }}
2024-01-09 18:55:07 +01:00
- name: Check the cache for liveness
env:
EXPECT_FLAKEHUB: ${{ toJson(matrix.use-flakehub != 'disabled' && matrix.id-token == 'write') }}
EXPECT_GITHUB_CACHE: ${{ toJson(
(matrix.use-gha-cache != 'disabled')
&& (
(!(matrix.use-flakehub != 'disabled' && matrix.id-token == 'write'))
|| (matrix.use-gha-cache == 'enabled')
)
) }}
2024-01-09 18:55:07 +01:00
run: |
.github/workflows/cache-test.sh
success:
runs-on: ubuntu-latest
needs: run-systems
steps:
- run: "true"
- run: |
echo "A dependent in the build matrix failed."
exit 1
if: |
contains(needs.*.result, 'failure') ||
contains(needs.*.result, 'cancelled')