Skip to content

Commit 40ded45

Browse files
cdeckerrustyrussell
authored andcommitted
ci: Remove nix check
It was breaking a lot, due to Cargo dependencies not being published, no surprise there, we are just publishing them with the changes it is complaining about.
1 parent 8f67da3 commit 40ded45

File tree

1 file changed

+1
-22
lines changed

1 file changed

+1
-22
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -594,25 +594,6 @@ jobs:
594594
cat config.vars
595595
VALGRIND=0 uv run eatmydata pytest tests/ -vvv -n ${PYTEST_PAR} ${PYTEST_OPTS}
596596
597-
check-flake:
598-
name: Check Nix Flake
599-
runs-on: ubuntu-22.04
600-
strategy:
601-
fail-fast: true
602-
steps:
603-
- name: Checkout
604-
uses: actions/checkout@v4
605-
with:
606-
submodules: "recursive"
607-
- name: Check Nix flake inputs
608-
uses: DeterminateSystems/flake-checker-action@v12
609-
- name: Install Nix
610-
uses: cachix/install-nix-action@V31
611-
with:
612-
nix_path: nixpkgs=channel:nixos-25.05
613-
- name: Check flake
614-
run: nix flake check .?submodules=1#
615-
616597
gather:
617598
# A dummy task that depends on the full matrix of tests, and
618599
# signals successful completion. Used for the PR status to pass
@@ -625,19 +606,17 @@ jobs:
625606
- integration-valgrind
626607
- integration-sanitizers
627608
- min-btc-support
628-
- check-flake
629609
if: ${{ always() }}
630610
steps:
631611
- name: Complete
632612
env:
633-
JOB_NAMES: "INTEGRATION CHECK_UNITS VALGRIND SANITIZERS BTC FLAKE"
613+
JOB_NAMES: "INTEGRATION CHECK_UNITS VALGRIND SANITIZERS BTC"
634614
INTEGRATION: ${{ needs.integration.result }}
635615
CHECK_UNITS: ${{ needs['check-units'].result }}
636616
VALGRIND: ${{ needs['integration-valgrind'].result }}
637617
SANITIZERS: ${{ needs['integration-sanitizers'].result }}
638618
DOCS: ${{ needs['update-docs-examples'].result }}
639619
BTC: ${{ needs['min-btc-support'].result }}
640-
FLAKE: ${{ needs['check-flake'].result }}
641620
run: |
642621
failed=""
643622
for name in $JOB_NAMES; do

0 commit comments

Comments
 (0)