8fb36ace8e
Some checks failed
/ test (push) Successful in 1s
Conventional Commits / Conventional Commits (pull_request) Failing after 3s
/ Build Nix package (pull_request) Failing after 3s
/ Flake Checker (pull_request) Failing after 3s
/ Check Nix Flake (pull_request) Failing after 2s
Security audit / security_audit (push) Failing after 3s
Unit tests / unit-tests (native, 1.70.0) (pull_request) Has been cancelled
Unit tests / unit-tests (native, beta) (pull_request) Has been cancelled
Unit tests / unit-tests (native, nightly) (pull_request) Has been cancelled
Unit tests / unit-tests (native, stable) (pull_request) Has been cancelled
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
63 lines
1.7 KiB
YAML
63 lines
1.7 KiB
YAML
# SPDX-FileCopyrightText: 2024 Christina Sørensen
|
|
#
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches: [main]
|
|
paths:
|
|
- '.github/workflows/flake.yml'
|
|
- 'src/**'
|
|
- 'Cargo.*'
|
|
- "*.toml"
|
|
- "flake.*"
|
|
- "*.nix"
|
|
- "*.rs"
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- '.github/workflows/flake.yml'
|
|
- 'src/**'
|
|
- 'Cargo.*'
|
|
- "*.toml"
|
|
- "flake.*"
|
|
- "*.nix"
|
|
- "*.rs"
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
flake-checker:
|
|
name: Flake Checker
|
|
runs-on: native
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Check Nix flake inputs
|
|
uses: DeterminateSystems/flake-checker-action@v8
|
|
check:
|
|
name: Check Nix Flake
|
|
runs-on: native
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install Nix
|
|
uses: DeterminateSystems/nix-installer-action@v13
|
|
- name: Setup Nix cache
|
|
uses: DeterminateSystems/magic-nix-cache-action@main
|
|
- name: Nix Flake Check
|
|
run: nix flake check --all-systems
|
|
build:
|
|
name: Build Nix package
|
|
# if cross compilation is desired add 'aarch64-linux', 'x86_64-darwin' and 'aarch64-darwin' and fix the flake to support cross compilation.
|
|
strategy:
|
|
matrix:
|
|
target: [x86_64-linux]
|
|
runs-on: native
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install Nix
|
|
uses: DeterminateSystems/nix-installer-action@v13
|
|
- name: Setup Nix cache
|
|
uses: DeterminateSystems/magic-nix-cache-action@main
|
|
- name: Nix Build
|
|
run: nix build .#packages.${{ matrix.target }}.default
|