Skip to content

Commit

Permalink
ci/ui: fix permissions for 'downloads' directory #2
Browse files Browse the repository at this point in the history
It was missing for `Store logs` step.

Signed-off-by: Loic Devulder <ldevulder@suse.com>
  • Loading branch information
ldevulder committed Jan 3, 2023
1 parent 56edcd7 commit 90e47a0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/master-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,13 @@ jobs:
ELEMENTAL_SUPPORT: ${{ inputs.elemental_support }}
RANCHER_LOG_COLLECTOR: ${{ inputs.rancher_log_collector }}
run: |
cd tests && make e2e-get-logs
cd tests && (
# Removing 'downloads' is needed to avoid this error during 'make':
# 'pattern all: open .../elemental/tests/cypress/downloads: permission denied'
sudo rm -rf cypress/downloads
make e2e-get-logs
)
- name: Upload cluster logs
if: always()
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 90e47a0

Please sign in to comment.