File tree Expand file tree Collapse file tree 1 file changed +1
-22
lines changed Expand file tree Collapse file tree 1 file changed +1
-22
lines changed Original file line number Diff line number Diff line change @@ -594,25 +594,6 @@ jobs:
594
594
cat config.vars
595
595
VALGRIND=0 uv run eatmydata pytest tests/ -vvv -n ${PYTEST_PAR} ${PYTEST_OPTS}
596
596
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
-
616
597
gather :
617
598
# A dummy task that depends on the full matrix of tests, and
618
599
# signals successful completion. Used for the PR status to pass
@@ -625,19 +606,17 @@ jobs:
625
606
- integration-valgrind
626
607
- integration-sanitizers
627
608
- min-btc-support
628
- - check-flake
629
609
if : ${{ always() }}
630
610
steps :
631
611
- name : Complete
632
612
env :
633
- JOB_NAMES : " INTEGRATION CHECK_UNITS VALGRIND SANITIZERS BTC FLAKE "
613
+ JOB_NAMES : " INTEGRATION CHECK_UNITS VALGRIND SANITIZERS BTC"
634
614
INTEGRATION : ${{ needs.integration.result }}
635
615
CHECK_UNITS : ${{ needs['check-units'].result }}
636
616
VALGRIND : ${{ needs['integration-valgrind'].result }}
637
617
SANITIZERS : ${{ needs['integration-sanitizers'].result }}
638
618
DOCS : ${{ needs['update-docs-examples'].result }}
639
619
BTC : ${{ needs['min-btc-support'].result }}
640
- FLAKE : ${{ needs['check-flake'].result }}
641
620
run : |
642
621
failed=""
643
622
for name in $JOB_NAMES; do
You can’t perform that action at this time.
0 commit comments