debug
This commit is contained in:
parent
bade33e81d
commit
7b3d308e5d
1 changed files with 4 additions and 1 deletions
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
|
@ -31,6 +31,8 @@ jobs:
|
||||||
# run: apt update && apt install -y sudo
|
# run: apt update && apt install -y sudo
|
||||||
- name: Install Nix
|
- name: Install Nix
|
||||||
uses: https://github.com/cachix/install-nix-action@v26
|
uses: https://github.com/cachix/install-nix-action@v26
|
||||||
|
env:
|
||||||
|
HOME: '/tmp'
|
||||||
with:
|
with:
|
||||||
extra_nix_config: |
|
extra_nix_config: |
|
||||||
experimental-features = nix-command flakes
|
experimental-features = nix-command flakes
|
||||||
|
@ -44,6 +46,7 @@ jobs:
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
env:
|
env:
|
||||||
USER: 'root'
|
USER: 'root'
|
||||||
|
HOME: '/tmp'
|
||||||
|
|
||||||
- name: Garbage collect build dependencies
|
- name: Garbage collect build dependencies
|
||||||
run: nix-collect-garbage
|
run: nix-collect-garbage
|
||||||
|
@ -51,7 +54,7 @@ jobs:
|
||||||
- name: Build new ${{ matrix.system }} system
|
- name: Build new ${{ matrix.system }} system
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
HOME: /tmp
|
HOME: '/tmp'
|
||||||
run: |
|
run: |
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
nix build \
|
nix build \
|
||||||
|
|
Reference in a new issue