2023-06-26 05:18:41 +02:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install Nix
|
2023-07-14 11:17:41 +02:00
|
|
|
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
|
2024-04-12 16:08:25 +02:00
|
|
|
- name: Install pnpm dependencies
|
|
|
|
run: nix develop --command pnpm install
|
|
|
|
- name: Check formatting
|
|
|
|
run: nix develop --command pnpm run format
|
|
|
|
- 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
|
|
|
|
- run: test $(git status --porcelain=v1 2>/dev/null | wc -l) -eq 0
|
2023-06-26 05:18:41 +02:00
|
|
|
|
2024-04-18 19:09:23 +02:00
|
|
|
test-no-nix:
|
|
|
|
name: Run x86_64 Linux
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
permissions:
|
|
|
|
id-token: "write"
|
|
|
|
contents: "read"
|
|
|
|
env:
|
|
|
|
ACTIONS_STEP_DEBUG: true
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Cache the store
|
|
|
|
uses: ./
|
|
|
|
|
2023-06-26 05:18:41 +02:00
|
|
|
run-x86_64-linux:
|
|
|
|
name: Run x86_64 Linux
|
|
|
|
runs-on: ubuntu-22.04
|
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
|
2023-06-26 05:18:41 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install Nix
|
2023-07-14 11:17:41 +02:00
|
|
|
uses: DeterminateSystems/nix-installer-action@main
|
2023-06-26 05:18:41 +02:00
|
|
|
with:
|
2024-01-11 17:53:42 +01:00
|
|
|
flakehub: true
|
2023-06-26 05:18:41 +02:00
|
|
|
extra-conf: |
|
|
|
|
narinfo-cache-negative-ttl = 0
|
|
|
|
- name: Cache the store
|
|
|
|
uses: ./
|
|
|
|
- name: Check the cache for liveness
|
|
|
|
run: |
|
|
|
|
.github/workflows/cache-test.sh
|
|
|
|
|
2024-01-09 18:55:07 +01:00
|
|
|
run-x86_64-darwin:
|
|
|
|
name: Run x86_64 Darwin
|
|
|
|
runs-on: macos-12
|
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-01-09 18:55:07 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install Nix
|
|
|
|
uses: DeterminateSystems/nix-installer-action@main
|
|
|
|
with:
|
2024-01-11 17:53:42 +01:00
|
|
|
flakehub: true
|
2024-01-09 18:55:07 +01:00
|
|
|
extra-conf: |
|
|
|
|
narinfo-cache-negative-ttl = 0
|
|
|
|
- name: Cache the store
|
|
|
|
uses: ./
|
|
|
|
- name: Check the cache for liveness
|
|
|
|
run: |
|
|
|
|
.github/workflows/cache-test.sh
|
|
|
|
|
|
|
|
run-aarch64-darwin:
|
|
|
|
name: Run aarch64 Darwin
|
|
|
|
concurrency: build-ARM64-macOS
|
|
|
|
runs-on: macos-latest-xlarge
|
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-01-09 18:55:07 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install Nix
|
|
|
|
uses: DeterminateSystems/nix-installer-action@main
|
|
|
|
with:
|
2024-01-11 17:53:42 +01:00
|
|
|
flakehub: true
|
2024-01-09 18:55:07 +01:00
|
|
|
extra-conf: |
|
|
|
|
narinfo-cache-negative-ttl = 0
|
|
|
|
- name: Cache the store
|
|
|
|
uses: ./
|
|
|
|
- name: Check the cache for liveness
|
|
|
|
run: |
|
|
|
|
.github/workflows/cache-test.sh
|