Skip to content

Commit

Permalink
ignore errors in 'copying system files' step (#2162)
Browse files Browse the repository at this point in the history
  • Loading branch information
sharpeye authored Sep 28, 2024
1 parent 4059152 commit aca0108
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@ runs:
- name: copying system files
shell: bash --noprofile --norc -eo pipefail -x {0}
run: |
sudo -E -H -u github cp /var/log/kern.log "$LOG_DIR/kern.log"
sudo cp /var/log/kern.log "$LOG_DIR/kern.log" &&
sudo chown -R github:github "$LOG_DIR/kern.log" || true
- name: archive unitest reports (orig)
shell: bash --noprofile --norc -eo pipefail -x {0}
Expand Down

0 comments on commit aca0108

Please sign in to comment.