diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 22d54215bc..9156a48367 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -19,4 +19,18 @@ jobs: access-tokens: github.com=${{ secrets.github_token }} org_token: ${{ secrets.org_token }} with: - filter_builds: '((.top_attr == "checks") and (.system == "x86_64-linux") and (.attr == "virtualisation-works" or .attr == "ensure-blocks" or .attr == "sepolia-runs" or .attr == "union-runs" or .attr == "epoch-completes" or .attr == "forced-set-rotation" or .attr == "upgrade-from-genesis" or .attr == "upgrade-with-tokenfactory-state"))' + filter_builds: | + ( + (.top_attr == "checks") and + (.system == "x86_64-linux") and + ( + .attr == "virtualisation-works" or + .attr == "ensure-blocks" or + .attr == "sepolia-runs" or + .attr == "union-runs" or + .attr == "epoch-completes" or + .attr == "forced-set-rotation" or + .attr == "upgrade-from-genesis" or + .attr == "upgrade-with-tokenfactory-state" + ) + ) diff --git a/flake.nix b/flake.nix index 6e975f8a7b..60014e2796 100644 --- a/flake.nix +++ b/flake.nix @@ -218,6 +218,22 @@ filterAttrs isCi self.devShells.aarch64-linux; }; }; + nightly = { + outputs = { + checks.x86_64-linux.epoch-completes = + self.checks.x86_64-linux.epoch-completes; + checks.x86_64-linux.forced-set-rotation = + self.checks.x86_64-linux.forced-set-rotation; + checks.x86_64-linux.union-runs = + self.checks.x86_64-linux.union-runs; + checks.x86_64-linux.upgrade-from-genesis = + self.checks.x86_64-linux.upgrade-from-genesis; + checks.x86_64-linux.upgrade-with-tokenfactory-state = + self.checks.x86_64-linux.upgrade-with-tokenfactory-state; + checks.x86_64-linux.virtualisation-works = + self.checks.x86_64-linux.virtualisation-works; + }; + }; }; }; };