1
0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-11-26 13:14:31 +01:00

Added logic to ignore failed command and continue processing

This commit is contained in:
Pavel Odintsov 2022-02-09 14:27:32 +00:00
parent e3c66677ee
commit 8e4fab2669

@ -147,7 +147,11 @@ jobs:
paths:
- /opt
- run: cd src; mkdir -p build; cd build; /opt/cmake-3.16.4/bin/cmake ..; make
- run: tar -cpzf /opt/fastnetmon_all_libs.tar.gz --exclude=/opt/fastnetmon_all_libs.tar.gz -C /opt /opt; true
- run:
command: |
set +e
tar -cpzf /opt/fastnetmon_all_libs.tar.gz --exclude=/opt/fastnetmon_all_libs.tar.gz -C /opt /opt
true
- store_artifacts:
path: /opt/fastnetmon_all_libs.tar.gz
- store_artifacts: