You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Binary cache matthewbauer-nix-install-tests doesn't exist or it's private. Start by visiting https://app.cachix.org and create a personal/cache auth token.
The check_cachix step I introduced in #4577 should have the right general logic for this, and I think single steps can be made conditional, so maybe the tests job can also use needs: [check_cachix], and then the cachix-action step can use if: needs.check_cachix.outputs.secret == 'true' to avoid running this step unless a credential is set.
The text was updated successfully, but these errors were encountered:
While telling someone about the install tests @domenkozar added in #4549 and I updated in #4577, I noticed that not having cachix set up for install tests causes failures like https://github.com/matthewbauer/nix/runs/3416896499?check_suite_focus=true#step:5:12:
This is coming from
nix/.github/workflows/test.yml
Lines 18 to 22 in 9feca5c
The check_cachix step I introduced in #4577 should have the right general logic for this, and I think single steps can be made conditional, so maybe the
tests
job can also useneeds: [check_cachix]
, and then the cachix-action step can useif: needs.check_cachix.outputs.secret == 'true'
to avoid running this step unless a credential is set.The text was updated successfully, but these errors were encountered: