Skip to content
This repository has been archived by the owner on Apr 7, 2024. It is now read-only.

Commit

Permalink
[ci] nix flake check / build
Browse files Browse the repository at this point in the history
  • Loading branch information
NextFire committed Apr 5, 2024
1 parent 399b42c commit 794036e
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: "Nix"

on:
push:

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v26
- run: nix flake check --all-systems

build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-22.04 # linux x86_64
- macos-12 # macOS x86_64
- macos-14 # macOS arm64
package:
- dakara_check
- ffmpegaacsucks
- syncplay
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v26
- run: nix build -L .#${{ matrix.package }}
3 changes: 1 addition & 2 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>Japan7/renovate-config"],
"ignoreTests": true
"extends": ["github>Japan7/renovate-config"]
}

0 comments on commit 794036e

Please sign in to comment.