ci: fix build process with correct env

This commit is contained in:
Gabriel Arazas 2022-08-17 23:43:58 +08:00
parent 3c8c6021d7
commit e064becf1a

View File

@ -1,5 +1,8 @@
name: "Building derivations" name: "Building derivations"
on: [pull_request, push] on: [pull_request, push]
env:
NIXPKGS_ALLOW_INSECURE: "1"
NIXPKGS_ALLOW_BROKEN: "1"
jobs: jobs:
check-outputs: check-outputs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -8,8 +11,10 @@ jobs:
- uses: cachix/install-nix-action@v16 - uses: cachix/install-nix-action@v16
with: with:
nix_path: nixpkgs=channel:nixos-unstable nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: |
keep-going = true
- name: Check flake outputs - name: Check flake outputs
run: NIXPKGS_ALLOW_INSECURE=1 nix flake check --impure run: nix flake check --impure
build-custom-packages: build-custom-packages:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -25,7 +30,7 @@ jobs:
name: foo-dogsquared name: foo-dogsquared
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Build custom packages - name: Build custom packages
run: nix shell nixpkgs#nix-build-uncached --command nix-build-uncached ./pkgs run: nix shell nixpkgs#nix-build-uncached --command nix-build-uncached ./pkgs --impure
build-hosts: build-hosts:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -36,4 +41,4 @@ jobs:
nix_path: nixpkgs=channel:nixos-unstable nix_path: nixpkgs=channel:nixos-unstable
- name: Build NixOS configurations - name: Build NixOS configurations
run: | run: |
nix build .#nixosConfigurations.ni.config.system.build.toplevel nix build .#nixosConfigurations.ni.config.system.build.toplevel --impure