debug
This commit is contained in:
parent
213cd785cd
commit
3439def776
1 changed files with 12 additions and 10 deletions
22
.github/workflows/build.yml
vendored
22
.github/workflows/build.yml
vendored
|
@ -22,6 +22,8 @@ jobs:
|
||||||
uses: https://github.com/actions/checkout@v4
|
uses: https://github.com/actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
- name: Install sudo
|
||||||
|
run: sudo apt update && sudo 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
|
||||||
with:
|
with:
|
||||||
|
@ -49,13 +51,13 @@ jobs:
|
||||||
# -v \
|
# -v \
|
||||||
# --log-format raw \
|
# --log-format raw \
|
||||||
# > >(tee stdout.log) 2> >(tee /tmp/nix-build-err.log >&2)
|
# > >(tee stdout.log) 2> >(tee /tmp/nix-build-err.log >&2)
|
||||||
# nix-build-success:
|
nix-build-success:
|
||||||
# if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
# needs:
|
needs:
|
||||||
# - nix-build
|
- nix-build
|
||||||
# name: Nix Build Successful
|
name: Nix Build Successful
|
||||||
# runs-on: docker
|
runs-on: docker
|
||||||
# steps:
|
steps:
|
||||||
# - if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
|
- if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
|
||||||
# name: Check matrix status
|
name: Check matrix status
|
||||||
# run: exit 1
|
run: exit 1
|
Reference in a new issue