Skip to content

Commit

Permalink
Fix load tests workflow (#115)
Browse files Browse the repository at this point in the history
Change ebpf-discovery log file permission after load tests to enable uploading it.
  • Loading branch information
asias91 authored Dec 12, 2024
1 parent acc8c69 commit fffef57
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/actions/run-load-tests/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,12 @@ runs:
cd ${{ env.LOAD_TESTING_PATH }}
/bin/bash test_load.sh ${{ env.DISCOVERY_BIN_PATH }} ${{ github.workspace }}/logs 5 5 30m
continue-on-error: true
- name: Set permissions for logs
shell: bash
run: |
sudo chmod -R 777 ${{ github.workspace }}/logs
- name: "Upload log archive"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "log-archive"
path: ${{ github.workspace }}/logs
path: ${{ github.workspace }}/logs

0 comments on commit fffef57

Please sign in to comment.