Skip to content

Commit

Permalink
ci: add DO_NOT_TRACK env variable to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
davidweisse committed Apr 22, 2024
1 parent 1560df3 commit 4b1a55b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/e2e_openssl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
env:
container_registry: ghcr.io/edgelesssys
azure_resource_group: contrast-ci
DO_NOT_TRACK: 1

jobs:
test:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/e2e_servicemesh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
env:
container_registry: ghcr.io/edgelesssys
azure_resource_group: contrast-ci
DO_NOT_TRACK: 1

jobs:
test:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/e2e_simple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
env:
container_registry: ghcr.io/edgelesssys
azure_resource_group: contrast-ci
DO_NOT_TRACK: 1

jobs:
test:
Expand Down
5 changes: 4 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@
gotools
just
];
shellHook = ''alias make=just'';
shellHook = ''
alias make=just
export DO_NOT_TRACK=1
'';
};
docs = pkgs.mkShell {
packages = with pkgs; [
Expand Down

0 comments on commit 4b1a55b

Please sign in to comment.