Skip to content

Commit

Permalink
build: add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
icecreammatt committed Jan 7, 2024
1 parent a381aeb commit ce8ac4d
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 1 deletion.
33 changes: 33 additions & 0 deletions .github/workflows/nix-github-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Nix Flake actions

on:
pull_request:
push:
branches:
- master
- main

jobs:
nix-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v24
- id: set-matrix
name: Generate Nix Matrix
run: |
set -Eeu && nix build && ls result
# matrix="$(nix eval --json '.#')"
# echo "matrix=$matrix" >> "$GITHUB_OUTPUT"

# nix-build:
# needs: nix-matrix
# runs-on: ${{ matrix.os }}
# strategy:
# matrix: ${{fromJSON(needs.nix-matrix.outputs.matrix)}}
# steps:
# - uses: actions/checkout@v4
# - uses: cachix/install-nix-action@v24
# - run: nix build -L ".#"
21 changes: 21 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";

nix-github-actions.url = "github:nix-community/nix-github-actions";
nix-github-actions.inputs.nixpkgs.follows = "nixpkgs";

utils.url = "github:numtide/flake-utils";
};

outputs = { self, nixpkgs, ... } @inputs: inputs.utils.lib.eachSystem [
outputs = { self, nixpkgs, nix-github-actions, ... } @inputs: inputs.utils.lib.eachSystem [
"x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin"
] (system: let
pkgs = import nixpkgs {
Expand All @@ -20,6 +23,10 @@
});
};
in {
githubActions = nix-github-actions.lib.mkGithubMatrix { checks = self.packages; };
# packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
# packages.x86_64-linux.default = self.packages.x86_64-linux.hello;

hydraJobs."tester" = self.defaultPackage;
# hydraJobs."tester-container" = self.container;

Expand Down

0 comments on commit ce8ac4d

Please sign in to comment.