Skip to content

Commit

Permalink
Remove SOPS setup from E2E workflow
Browse files Browse the repository at this point in the history
SOPS is now installed as part of the tests Makefile target,
by removing it on the E2E workflow we ensure the same versions
and the same experience across development environments and CI.

Signed-off-by: Paulo Gomes <paulo.gomes@weave.works>
  • Loading branch information
Paulo Gomes committed Mar 30, 2022
1 parent fc22de7 commit 5217052
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 63 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@ jobs:
uses: fluxcd/pkg/actions/kubectl@main
with:
version: 1.21.2
- name: Setup SOPS
uses: fluxcd/pkg/actions/sops@main
- name: Enable integration tests
# Only run integration tests for main branch
if: github.ref == 'refs/heads/main'
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ GOBIN=$(BUILD_DIR)/gobin
else
GOBIN=$(shell go env GOBIN)
endif
export PATH:=${GOBIN}:${PATH}
export PATH:=$(GOBIN):${PATH}

# Allows for defining additional Go test args, e.g. '-tags integration'.
GO_TEST_ARGS ?=
Expand Down
Loading

0 comments on commit 5217052

Please sign in to comment.