mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-01 08:39:54 +03:00
bc24f2e510
This reverts commit 08dc5068e6
.
51 lines
1.6 KiB
YAML
51 lines
1.6 KiB
YAML
name: "CI"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
jobs:
|
|
tests-linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: cachix/install-nix-action@v22
|
|
with:
|
|
extra_nix_config: |
|
|
system-features = nixos-test recursive-nix benchmark big-parallel kvm
|
|
extra-experimental-features = recursive-nix nix-command flakes
|
|
- run: nix build
|
|
- run: nix build .#doc
|
|
- run: nix fmt . -- --check
|
|
- run: nix flake check
|
|
tests-darwin:
|
|
runs-on: macos-12
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: cachix/install-nix-action@v24
|
|
with:
|
|
extra_nix_config: |
|
|
system-features = nixos-test recursive-nix benchmark big-parallel kvm
|
|
extra-experimental-features = recursive-nix nix-command flakes
|
|
- run: nix build
|
|
- run: nix build .#doc
|
|
- run: nix fmt . -- --check
|
|
- run: nix flake check
|
|
- name: "Install nix-darwin module"
|
|
run: |
|
|
# https://github.com/ryantm/agenix/pull/230#issuecomment-1867025385
|
|
|
|
sudo mv /etc/nix/nix.conf{,.bak}
|
|
nix \
|
|
--extra-experimental-features 'nix-command flakes' \
|
|
build .#checks.x86_64-darwin.integration
|
|
|
|
./result/activate-user
|
|
sudo ./result/activate
|
|
- name: "Test nix-darwin module"
|
|
run: |
|
|
sudo /run/current-system/sw/bin/agenix-integration
|
|
- name: "Test home-manager module"
|
|
run: |
|
|
# Do the job of `home-manager switch` in-line to avoid rate limiting
|
|
nix build .#homeConfigurations.integration-darwin.activationPackage
|
|
./result/activate
|
|
~/agenix-home-integration/bin/agenix-home-integration
|