@@ -516,24 +516,10 @@ steps:
516516 concurrency : 1
517517 concurrency_group : ' macos-e2e-tests'
518518
519- - group : Windows Agents Setup
520- key : windows-setup
521- # Assumes Ruby 2.7 + resource kit is correctly installed on the target
522- # machine
523- steps :
524- - label : 💎 Configure Ruby
525- key : windows-ruby
526- commands :
527- - cd test\e2e
528- - bundle install
529- agents :
530- system : ${windows}
531-
532519 - group : Windows Artifacts
533520 key : windows-artifacts
534521 depends_on :
535522 - linux-nix
536- - windows-setup
537523 steps :
538524 - block : Build Windows Artifacts (windows)
539525 depends_on : []
@@ -544,6 +530,14 @@ steps:
544530 && build.env("RELEASE_CANDIDATE") == null
545531 key : trigger-build-windows-artifacts
546532
533+ - label : 💎 Configure Ruby
534+ key : windows-ruby
535+ commands :
536+ - cd test\e2e
537+ - bundle install
538+ agents :
539+ system : ${windows}
540+
547541 - label : Build Package (windows)
548542 key : windows-package
549543 depends_on :
@@ -565,6 +559,7 @@ steps:
565559 - group : Windows Checks
566560 depends_on :
567561 - windows-artifacts
562+ if : build.env("RELEASE_CANDIDATE") == null || build.env("TEST_RC") == "FALSE"
568563 steps :
569564 - label : Windows Unit Tests
570565 command : |
@@ -587,7 +582,7 @@ steps:
587582
588583 - block : Windows E2E Tests
589584 depends_on : []
590- if : build.env("RELEASE_CANDIDATE") == null
585+ if : build.env("RELEASE_CANDIDATE") == null || build.env("TEST_RC") == "TRUE"
591586 key : trigger-windows-e2e-tests
592587
593588 - label : ⚙️ Windows E2E Tests
@@ -630,21 +625,23 @@ steps:
630625 agents :
631626 system : x86_64-linux
632627
633- - block : Docker Build
634- depends_on : []
635- if : build.env("TEST_RC") == "TRUE"
636- key : docker-build-block
637-
638- - label : Push Docker Image
639- depends_on :
640- - docker-build
641- key : build-docker
642- command :
643- - " mkdir -p config && echo '{ outputs = _: { dockerHubRepoName = \" cardanofoundation/cardano-wallet\" ; }; }' > config/flake.nix"
644- - " nix build .#pushDockerImage --override-input hostNixpkgs \" path:$(nix eval --impure -I $NIX_PATH --expr '(import <nixpkgs> {}).path')\" --override-input customConfig path:./config -o docker-build-push"
645- - " ./docker-build-push"
646- agents :
647- system : x86_64-linux
628+
629+
630+ # - block: Docker Build
631+ # depends_on: []
632+ # if: build.env("TEST_RC") == "TRUE"
633+ # key: docker-build-block
634+
635+ # - label: Push Docker Image
636+ # depends_on:
637+ # - docker-build
638+ # key: build-docker
639+ # command:
640+ # - "mkdir -p config && echo '{ outputs = _: { dockerHubRepoName = \"cardanofoundation/cardano-wallet\"; }; }' > config/flake.nix"
641+ # - "nix build .#pushDockerImage --override-input hostNixpkgs \"path:$(nix eval --impure -I $NIX_PATH --expr '(import <nixpkgs> {}).path')\" --override-input customConfig path:./config -o docker-build-push"
642+ # - "./docker-build-push"
643+ # agents:
644+ # system: x86_64-linux
648645
649646 - group : Docker Checks
650647 depends_on :
0 commit comments