commit
facb417179
3 changed files with 6 additions and 27 deletions
27
.github/workflows/build.yaml
vendored
27
.github/workflows/build.yaml
vendored
|
@ -1,27 +0,0 @@
|
||||||
name: build
|
|
||||||
on:
|
|
||||||
workflow_dispatch: # allows manual triggering
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
- update_flake_lock_action
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
if: ${{ always() }}
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- uses: cachix/install-nix-action@v20
|
|
||||||
with:
|
|
||||||
extra_nix_config: |
|
|
||||||
accept-flake-config = true
|
|
||||||
|
|
||||||
- uses: cachix/cachix-action@v12
|
|
||||||
with:
|
|
||||||
name: aciceri-emacs
|
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
||||||
|
|
||||||
- run: nix --print-build-logs --verbose build
|
|
|
@ -23,6 +23,7 @@
|
||||||
./hmModules
|
./hmModules
|
||||||
./formatter
|
./formatter
|
||||||
./diff-closures
|
./diff-closures
|
||||||
|
./hydra
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
5
hydra/default.nix
Normal file
5
hydra/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{self, ...}: {
|
||||||
|
flake.hydraJobs = {
|
||||||
|
packages = self.packages;
|
||||||
|
};
|
||||||
|
}
|
Reference in a new issue