fix build with nixpkgs unstable
This commit is contained in:
parent
06f4996ba1
commit
d3184113b0
1 changed files with 4 additions and 2 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -45,6 +45,9 @@ jobs:
|
||||||
uses: cachix/install-nix-action@v14
|
uses: cachix/install-nix-action@v14
|
||||||
with:
|
with:
|
||||||
nix_path: "${{ matrix.nixPath }}"
|
nix_path: "${{ matrix.nixPath }}"
|
||||||
|
extra_nix_config: |
|
||||||
|
experimental-features = nix-command flakes
|
||||||
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Show nixpkgs version
|
- name: Show nixpkgs version
|
||||||
run: nix-instantiate --eval -E '(import <nixpkgs> {}).lib.version'
|
run: nix-instantiate --eval -E '(import <nixpkgs> {}).lib.version'
|
||||||
- name: Setup cachix
|
- name: Setup cachix
|
||||||
|
@ -65,8 +68,7 @@ jobs:
|
||||||
-I nixpkgs=$(nix-instantiate --find-file nixpkgs) \
|
-I nixpkgs=$(nix-instantiate --find-file nixpkgs) \
|
||||||
-I $PWD
|
-I $PWD
|
||||||
- name: Build nix packages
|
- name: Build nix packages
|
||||||
# TODO switch to default nixpkgs channel once nix-build-uncached 1.0.0 is in stable
|
run: nix shell -f '<nixpkgs>' nix-build-uncached -c nix-build-uncached ci.nix -A cacheOutputs
|
||||||
run: nix run -I 'nixpkgs=channel:nixos-unstable' nixpkgs.nix-build-uncached -c nix-build-uncached ci.nix -A cacheOutputs
|
|
||||||
- name: Trigger NUR update
|
- name: Trigger NUR update
|
||||||
# Don't replace <YOUR_REPO_NAME> here!
|
# Don't replace <YOUR_REPO_NAME> here!
|
||||||
if: ${{ matrix.nurRepo != '<YOUR_REPO_NAME>' }}
|
if: ${{ matrix.nurRepo != '<YOUR_REPO_NAME>' }}
|
||||||
|
|
Loading…
Reference in a new issue