Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/nightly_e2e_tests_ceph.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ jobs:
echo "Download dependencies"
go mod download

- name: Set URL
run: |
echo "Set URL"
task set-url:ci

- name: Run E2E
id: e2e-tests
working-directory: ./test/e2e/
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/nightly_e2e_tests_replicated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ jobs:
echo "Download dependencies"
go mod download

- name: Set URL
run: |
echo "Set URL"
task set-url:ci

- name: Run E2E
id: e2e-tests
working-directory: ./test/e2e/
Expand Down
9 changes: 9 additions & 0 deletions test/e2e/Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -205,3 +205,12 @@ tasks:
cmds:
- |
golangci-lint run --sort-results

set-url:ci:
desc: "Change URL for images"
cmds:
- find ./ ! -name Taskfile.yaml -type f -exec sed -i 's#https://89d64382-20df-4581-8cc7-80df331f67fa.selstorage.ru#https://e2e-test-images.e2e.virtlab.flant.com#g' {} \;
set-url:user:
desc: "Change URL for images"
cmds:
- find ./ ! -name Taskfile.yaml -type f -exec sed -i 's#https://e2e-test-images.e2e.virtlab.flant.com#https://89d64382-20df-4581-8cc7-80df331f67fa.selstorage.ru#g' {} \;
Loading